From 598576fedc84c067178f6a369b8e69a7a589edca Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Thu, 21 Mar 2024 16:35:06 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=85=B3=E4=BA=8E=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/stores/modules/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 || '-' }) },