This is an automated email from the ASF dual-hosted git repository. xxyu pushed a commit to branch kylin5 in repository https://gitbox.apache.org/repos/asf/kylin.git
commit 8c8cffdf71a15ed7715659a8d6f106a8d1b4cbeb Author: Qian Xia <lauraxiaq...@gmail.com> AuthorDate: Fri Mar 24 15:00:32 2023 +0800 KYLIN-5481 fix assign user to usergroup issue --- kystudio/src/components/common/UserEditModal/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kystudio/src/components/common/UserEditModal/index.vue b/kystudio/src/components/common/UserEditModal/index.vue index d44e591ea7..fc182ae7e6 100644 --- a/kystudio/src/components/common/UserEditModal/index.vue +++ b/kystudio/src/components/common/UserEditModal/index.vue @@ -390,7 +390,7 @@ export default class UserEditModal extends Vue { // const project = this.currentSelectedProject // 处理资源组时,发现这个接口不用传 project 参数 const { data: { data: totalGroups } } = await this.getGroupList() - this.setModal({ totalGroups }) + this.setModal({ totalGroups: totalGroups.value }) } } </script>