Merge claude/1

This commit is contained in:
librelad 2026-05-31 00:39:08 +01:00
commit 208e4a4169
5 changed files with 15 additions and 9 deletions

View File

@ -52,7 +52,7 @@ Object.assign(AppsManager.prototype, {
} else { } else {
let iconPath = icon || `/core/icons/categories/${id}.svg`; let iconPath = icon || `/core/icons/categories/${id}.svg`;
if (!iconPath.startsWith('/')) iconPath = '/' + iconPath; if (!iconPath.startsWith('/')) iconPath = '/' + iconPath;
iconHtml = `<img src="${iconPath}" alt="${name}" onerror="this.src='/core/icons/categories/default.svg'"/>`; iconHtml = `<img src="${iconPath}" alt="${name}" onerror="this.src='/core/icons/categories/misc.svg'"/>`;
} }
div.innerHTML = `${iconHtml} ${name}`; div.innerHTML = `${iconHtml} ${name}`;

View File

@ -14,7 +14,8 @@
"nav": { "nav": {
"label": "Dashboard", "label": "Dashboard",
"order": 10 "order": 10
} },
"order": 10
}, },
{ {
"id": "apps", "id": "apps",
@ -30,7 +31,8 @@
"nav": { "nav": {
"label": "App Center", "label": "App Center",
"order": 20 "order": 20
} },
"order": 20
}, },
{ {
"id": "admin", "id": "admin",
@ -44,7 +46,8 @@
"nav": { "nav": {
"label": "Admin", "label": "Admin",
"order": 40 "order": 40
} },
"order": 40
}, },
{ {
"id": "tasks", "id": "tasks",
@ -58,7 +61,8 @@
"nav": { "nav": {
"label": "Tasks", "label": "Tasks",
"order": 60 "order": 60
} },
"order": 60
}, },
{ {
"id": "updater", "id": "updater",
@ -71,7 +75,8 @@
"nav": { "nav": {
"label": "Updates", "label": "Updates",
"order": 30 "order": 30
} },
"order": 30
}, },
{ {
"id": "backup", "id": "backup",
@ -85,7 +90,8 @@
"nav": { "nav": {
"label": "Backups", "label": "Backups",
"order": 50 "order": 50
} },
"order": 50
} }
] ]
} }

View File

@ -67,8 +67,8 @@
})(); })();
</script> </script>
<script src="/core/theme/js/theme-registry.js"></script> <script src="/core/theme/js/theme-registry.js"></script>
<script src="/core/forms/controls/js/custom-select.js"></script> <script src="/core/forms/js/custom-select.js"></script>
<script src="/core/forms/controls/js/custom-number.js"></script> <script src="/core/forms/js/custom-number.js"></script>
</head> </head>
<body> <body>
<!-- Topbar Container --> <!-- Topbar Container -->