From 7fc1a13519d57d4607df08bdb23f521f8b43a957 Mon Sep 17 00:00:00 2001 From: LIghtJUNction Date: Sun, 29 Mar 2026 21:24:39 +0800 Subject: [PATCH] fix(dashboard): ReactorBg eased scope, CSS comments, theme types, and chat text color - ReactorBg.vue: fix eased variable scoping bug (moved to outer loop scope) - WelcomePage.vue: fix CSS // comments (not valid in SCSS) - DiamondBg.vue: fix CSS // comment in style block - ThemeType.ts: add missing MD3 hyphenated color properties - AddNewPlatform.vue: add optional chaining and emits declaration - FullLayout.vue: console.error -> console.warn for backend timeout - ConsoleDisplayer.vue: add content-type based log line coloring - VerticalHeader.vue + i18n: remove deprecated defaultCredentials hint - MessageList.vue: fix user/bot bubble text color for dark mode --- dashboard/src/components/auth/DiamondBg.vue | 47 ++++++++++++++----- dashboard/src/components/chat/MessageList.vue | 31 ++++++------ .../components/shared/ConsoleDisplayer.vue | 44 ++++++++++++++++- dashboard/src/components/shared/ReactorBg.vue | 6 +-- .../src/i18n/locales/en-US/core/header.json | 3 +- .../src/i18n/locales/en-US/features/auth.json | 6 ++- .../src/i18n/locales/ru-RU/core/header.json | 3 +- .../src/i18n/locales/ru-RU/features/auth.json | 20 +++++++- .../src/i18n/locales/zh-CN/core/header.json | 3 +- .../src/i18n/locales/zh-CN/features/auth.json | 6 ++- dashboard/src/layouts/full/FullLayout.vue | 4 +- .../full/vertical-header/VerticalHeader.vue | 4 -- dashboard/src/types/themeTypes/ThemeType.ts | 3 ++ dashboard/src/views/WelcomePage.vue | 13 +++-- 14 files changed, 138 insertions(+), 55 deletions(-) diff --git a/dashboard/src/components/auth/DiamondBg.vue b/dashboard/src/components/auth/DiamondBg.vue index dd1df64cb..f2a44d9d5 100644 --- a/dashboard/src/components/auth/DiamondBg.vue +++ b/dashboard/src/components/auth/DiamondBg.vue @@ -6,7 +6,11 @@