You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by xx...@apache.org on 2023/03/28 03:05:11 UTC

[kylin] 03/12: KYLIN-5481 fix assign user to usergroup issue

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 <la...@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>