mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-18 14:05:25 +00:00
fix settings
This commit is contained in:
parent
12327be5f2
commit
c27dc7f34d
@ -82,7 +82,7 @@ const state = reactive<{ timer: ReturnType<typeof setInterval> | null }>({
|
|||||||
});
|
});
|
||||||
const lang = ref<string>(locale.value || "en");
|
const lang = ref<string>(locale.value || "en");
|
||||||
const autoTime = ref<number>(6);
|
const autoTime = ref<number>(6);
|
||||||
const auto = ref<boolean>(false);
|
const auto = ref<boolean>(appStore.autoRefresh || false);
|
||||||
const appStore = useAppStoreWithOut();
|
const appStore = useAppStoreWithOut();
|
||||||
const utcArr = appStore.utc.split(":");
|
const utcArr = appStore.utc.split(":");
|
||||||
const utcHour = ref<number>(isNaN(Number(utcArr[0])) ? 0 : Number(utcArr[0]));
|
const utcHour = ref<number>(isNaN(Number(utcArr[0])) ? 0 : Number(utcArr[0]));
|
||||||
|
Loading…
Reference in New Issue
Block a user