You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ki...@apache.org on 2021/07/14 05:49:32 UTC

[dolphinscheduler] branch dev updated: [Fix-5699][UI] Fix update user error in user information introduced by #5700 (#5735)

This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 00e7655  [Fix-5699][UI] Fix update user error in user information introduced by #5700 (#5735)
00e7655 is described below

commit 00e76558be001dc72cf60f4db93c881ed98db95a
Author: Shiwen Cheng <ch...@gmail.com>
AuthorDate: Wed Jul 14 13:49:21 2021 +0800

    [Fix-5699][UI] Fix update user error in user information introduced by #5700 (#5735)
---
 .../src/js/conf/home/pages/security/pages/users/index.vue           | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/index.vue b/dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/index.vue
index f078901..220346b 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/index.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/index.vue
@@ -60,7 +60,7 @@
 </template>
 <script>
   import _ from 'lodash'
-  import { mapActions, mapMutations } from 'vuex'
+  import { mapActions } from 'vuex'
   import mList from './_source/list'
   import mCreateUser from './_source/createUser'
   import mSpin from '@/module/components/spin/spin'
@@ -89,7 +89,6 @@
     mixins: [listUrlParamHandle],
     props: {},
     methods: {
-      ...mapMutations('user', ['setUserInfo']),
       ...mapActions('security', ['getUsersListP']),
       /**
        * Query
@@ -114,9 +113,8 @@
         this.item = item
         this.createUserDialog = true
       },
-      onUpdate (param) {
+      onUpdate () {
         this._debounceGET('false')
-        this.setUserInfo(param)
         this.createUserDialog = false
       },
       close () {