From 7b6f3ffdbc252020ef40de50d4439b7d181bc7f6 Mon Sep 17 00:00:00 2001 From: song-cc-rock Date: Mon, 20 Nov 2023 10:39:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE):=20?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E7=B3=BB=E7=BB=9F=E7=BA=A7=E5=88=AB=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E7=BB=84Label=E6=9C=89=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1032890 --user=宋昌昌 [系统设置]github#27552创建用户组页面字段含义和选项值存在差异 https://www.tapd.cn/55049933/s/1437945 --- .../frontend/src/business/system/group/EditUserGroup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-setting/frontend/src/business/system/group/EditUserGroup.vue b/system-setting/frontend/src/business/system/group/EditUserGroup.vue index b9c59328a2..d77801e1e4 100644 --- a/system-setting/frontend/src/business/system/group/EditUserGroup.vue +++ b/system-setting/frontend/src/business/system/group/EditUserGroup.vue @@ -162,7 +162,7 @@ export default { if (data) { this.workspaces = data; let workspace = this.workspaces.find(item => item.id === scopeId); - if (workspace) { + if (workspace || !scopeId) { // 所属范围为工作空间 this.showLabel = this.$t('project.owning_workspace'); } else {