From 0c0de14ef843d7ac0d2b855544ba5f9d4005c166 Mon Sep 17 00:00:00 2001 From: SpliiT Date: Wed, 15 Apr 2026 10:40:03 +0200 Subject: [PATCH] fix(LoadingScreen): Fix time message and appname props --- app/components/Launcher.vue | 9 +++++++-- app/components/Loading.vue | 8 ++++++-- app/components/Loading/EcoMessages.vue | 17 ++++++++++++----- app/components/Wrapper.vue | 5 +++-- 4 files changed, 28 insertions(+), 11 deletions(-) diff --git a/app/components/Launcher.vue b/app/components/Launcher.vue index cfe071e4..18dfff13 100644 --- a/app/components/Launcher.vue +++ b/app/components/Launcher.vue @@ -5,8 +5,13 @@ import { Status } from "@ogw_front/utils/status"; import { appMode } from "@ogw_front/utils/local/app_mode"; import { useInfraStore } from "@ogw_front/stores/infra"; -const { logo } = defineProps({ +const { logo, appName } = defineProps({ logo: { + type: String, + required: false, + default: "", + }, + appName: { type: String, required: true, }, @@ -31,7 +36,7 @@ if (infraStore.app_mode !== appMode.CLOUD) { - + diff --git a/app/components/Loading.vue b/app/components/Loading.vue index 1440fb4a..b389e407 100644 --- a/app/components/Loading.vue +++ b/app/components/Loading.vue @@ -1,9 +1,13 @@ @@ -17,7 +18,7 @@ const { versions_schema } = defineProps({