diff --git a/ui/src/stores/modules/user.ts b/ui/src/stores/modules/user.ts index 5d8c0f5cb..f4c0a1463 100644 --- a/ui/src/stores/modules/user.ts +++ b/ui/src/stores/modules/user.ts @@ -47,7 +47,7 @@ const useUserStore = defineStore({ async asyncGetVersion() { return UserApi.getVersion().then((ok) => { - this.version = ok.data?.version || '0.9.0' + this.version = ok.data?.version || '-' }) },