()
| 487 | } |
| 488 | |
| 489 | private refreshDashboardViews(): void { |
| 490 | const dashboardLeaves = this.app.workspace.getLeavesOfType(VIEW_TYPE_CODE_DASHBOARD); |
| 491 | dashboardLeaves.forEach((leaf) => { |
| 492 | if (leaf.view instanceof CodeDashboardView) { |
| 493 | leaf.view.render(); |
| 494 | } |
| 495 | }); |
| 496 | } |
| 497 | |
| 498 | private getKnownDocuments(): Document[] { |
| 499 | const docs = new Set<Document>(); |
no test coverage detected