()
| 523 | } |
| 524 | |
| 525 | private async updateProjectStats() { |
| 526 | if (!this.projectsStatsEl) return; |
| 527 | |
| 528 | const allTasks = await this.getAllTasks(); |
| 529 | const projectStats = this.calculateProjectStats(allTasks); |
| 530 | |
| 531 | await this.renderProjectStats(this.projectsStatsEl, projectStats); |
| 532 | } |
| 533 | |
| 534 | /** |
| 535 | * Consolidate project names that point to the same file. |
no test coverage detected