()
| 477 | } |
| 478 | |
| 479 | private async updateOverviewStats() { |
| 480 | if (!this.overviewStatsEl) return; |
| 481 | |
| 482 | const allTasks = await this.getAllTasks(); |
| 483 | const overallStats = this.calculateOverallStats(allTasks); |
| 484 | |
| 485 | this.renderOverviewStats(this.overviewStatsEl, overallStats); |
| 486 | } |
| 487 | |
| 488 | private async updateTodayStats() { |
| 489 | if (!this.todayStatsEl) return; |
no test coverage detected