fix(项目设置): 修改项目成员所属用户组时,无法选择没有开启工作空间共享的用户组

--bug=1022782 --user=李玉号 【项目设置】修改项目成员所属用户组时,无法选择没有开启工作空间共享的用户组
https://www.tapd.cn/55049933/s/1334197
This commit is contained in:
shiziyuan9527 2023-02-13 10:54:23 +08:00 committed by 刘瑞斌
parent 595523f688
commit 7194dbfdba
1 changed files with 2 additions and 1 deletions

View File

@ -160,7 +160,8 @@ export default {
let groupIds = this.form.groups.map(r => r.id);
this.dialogResult = getUserGroupList({
type: GROUP_PROJECT,
resourceId: getCurrentWorkspaceId()
resourceId: getCurrentWorkspaceId(),
projectId: getCurrentProjectID(),
}).then(response => {
this.$set(this.form, "allgroups", response.data);
});