Spaces:
No application file
No application file
Update browser_automation_ui.html
Browse files
browser_automation_ui.html
CHANGED
|
@@ -107,7 +107,12 @@
|
|
| 107 |
<script defer>
|
| 108 |
// Wait until Lucide and DOM ready
|
| 109 |
document.addEventListener("DOMContentLoaded", () => {
|
| 110 |
-
lucide
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
initApp();
|
| 112 |
});
|
| 113 |
|
|
|
|
| 107 |
<script defer>
|
| 108 |
// Wait until Lucide and DOM ready
|
| 109 |
document.addEventListener("DOMContentLoaded", () => {
|
| 110 |
+
// ensure lucide global exists
|
| 111 |
+
if (typeof lucide === "undefined") {
|
| 112 |
+
console.error("Lucide failed to load – icons disabled");
|
| 113 |
+
} else {
|
| 114 |
+
lucide.createIcons();
|
| 115 |
+
}
|
| 116 |
initApp();
|
| 117 |
});
|
| 118 |
|