fix(dashboard): add missing Lucide icon initialization in project-overview and session-detail views

This commit is contained in:
catlog22
2025-12-08 23:24:17 +08:00
parent 5aa8d37cd0
commit 02f77c0a51
2 changed files with 6 additions and 0 deletions

View File

@@ -191,6 +191,9 @@ function renderProjectOverview() {
</div>
</div>
`;
// Initialize Lucide icons
if (typeof lucide !== 'undefined') lucide.createIcons();
}
function renderDevelopmentIndex(devIndex) {

View File

@@ -112,6 +112,9 @@ function showSessionDetailPage(sessionKey) {
</div>
</div>
`;
// Initialize Lucide icons
if (typeof lucide !== 'undefined') lucide.createIcons();
}
function goBackToSessions() {