You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2020/11/09 11:57:06 UTC

[cloudstack-primate] branch master updated: show clear the add LDAP account button

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

dahn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git


The following commit(s) were added to refs/heads/master by this push:
     new bbd249c  show clear the add LDAP account button
     new 8d4c66d  Merge pull request #851 from utchoang/feature/fix-issue-874
bbd249c is described below

commit bbd249ca836e31c829c67d4108cb78c01123e98b
Author: utchoang <ho...@unitech.vn>
AuthorDate: Mon Nov 9 15:22:42 2020 +0700

    show clear the add LDAP account button
---
 src/components/view/ActionButton.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/view/ActionButton.vue b/src/components/view/ActionButton.vue
index ce5c129..7c75098 100644
--- a/src/components/view/ActionButton.vue
+++ b/src/components/view/ActionButton.vue
@@ -55,11 +55,11 @@
           )"
         :icon="action.icon"
         :type="action.icon === 'delete' ? 'danger' : (action.icon === 'plus' ? 'primary' : 'default')"
-        :shape="!dataView && action.icon === 'plus' ? 'round' : 'circle'"
+        :shape="!dataView && ['plus', 'user-add'].includes(action.icon) ? 'round' : 'circle'"
         style="margin-left: 5px"
         :size="size"
         @click="execAction(action)">
-        <span v-if="!dataView && action.icon === 'plus'">
+        <span v-if="!dataView && ['plus', 'user-add'].includes(action.icon)">
           {{ $t(action.label) }}
         </span>
       </a-button>