Skip to content

Commit 02f77c0

Browse files
author
catlog22
committed
fix(dashboard): add missing Lucide icon initialization in project-overview and session-detail views
1 parent 5aa8d37 commit 02f77c0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

ccw/src/templates/dashboard-js/views/project-overview.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ function renderProjectOverview() {
191191
</div>
192192
</div>
193193
`;
194+
195+
// Initialize Lucide icons
196+
if (typeof lucide !== 'undefined') lucide.createIcons();
194197
}
195198

196199
function renderDevelopmentIndex(devIndex) {

ccw/src/templates/dashboard-js/views/session-detail.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ function showSessionDetailPage(sessionKey) {
112112
</div>
113113
</div>
114114
`;
115+
116+
// Initialize Lucide icons
117+
if (typeof lucide !== 'undefined') lucide.createIcons();
115118
}
116119

117120
function goBackToSessions() {

0 commit comments

Comments
 (0)