feat(webui): optimize CSS build system and enhance UI quality

This commit is contained in:
Wha1eChai
2026-01-11 02:56:51 +08:00
parent a56bc06cc1
commit bda9623f3a
11 changed files with 81 additions and 35 deletions

View File

@@ -149,7 +149,7 @@ window.DashboardCharts.updateCharts = function (component) {
// Safety checks
if (!canvas) {
console.warn("quotaChart canvas not found");
console.debug("quotaChart canvas not found");
return;
}
if (typeof Chart === "undefined") {
@@ -157,7 +157,7 @@ window.DashboardCharts.updateCharts = function (component) {
return;
}
if (!isCanvasReady(canvas)) {
console.warn("quotaChart canvas not ready, skipping update");
console.debug("quotaChart canvas not ready, skipping update");
return;
}