From 3aa282a4e2e32c752d2b9a07ef475e512bec811d Mon Sep 17 00:00:00 2001 From: CaptainB Date: Wed, 8 Jun 2022 18:58:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=97=A0license?= =?UTF-8?q?=E5=8F=AF=E4=BB=A5=E6=89=93=E5=BC=80=E5=B7=A5=E4=BD=9C=E7=A9=BA?= =?UTF-8?q?=E9=97=B4=E9=85=8D=E9=A2=9D=E7=9A=84=E8=8F=9C=E5=8D=95=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/business/components/settings/SettingMenu.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/business/components/settings/SettingMenu.vue b/frontend/src/business/components/settings/SettingMenu.vue index 46a272e2e4..ce102b6f92 100644 --- a/frontend/src/business/components/settings/SettingMenu.vue +++ b/frontend/src/business/components/settings/SettingMenu.vue @@ -72,6 +72,11 @@ export default { this.systems.splice(this.systems.indexOf(item), 1); } }); + this.workspaces.forEach(item => { + if (item.valid === true) { + this.workspaces.splice(this.workspaces.indexOf(item), 1); + } + }); } }); }