diff --git a/client/src/locales/en-US.json b/client/src/locales/en-US.json index 64425baaaa5..95a91b75408 100644 --- a/client/src/locales/en-US.json +++ b/client/src/locales/en-US.json @@ -348,6 +348,7 @@ "reader": "Reader", "buttonSelect": "Multiple selection", "buttonFinish": "Finish", + "counter": "{count} user selected | {count} users selected", "chooseRole": "Choose a role", "noChanges": "Selected members were already {role}.", "someFailed": "Some role assignments failed.", diff --git a/client/src/locales/fr-FR.json b/client/src/locales/fr-FR.json index 6bb432c6469..5db89b06d5a 100644 --- a/client/src/locales/fr-FR.json +++ b/client/src/locales/fr-FR.json @@ -348,6 +348,7 @@ "reader": "Lecteur", "buttonSelect": "Sélection multiple", "buttonFinish": "Terminer", + "counter": "{count} utilisateur sélectionné | {count} utilisateurs sélectionnés", "chooseRole": "Choisir un rôle", "noChanges": "Les membres sélectionnés étaient déjà {role}.", "someFailed": "Certaines assignations de rôle ont échoué.", diff --git a/client/src/theme/components/inputs.scss b/client/src/theme/components/inputs.scss index d2278bd3789..b7591600433 100644 --- a/client/src/theme/components/inputs.scss +++ b/client/src/theme/components/inputs.scss @@ -5,11 +5,17 @@ bottom: -1.5rem; } -// Sharing Modal : remove currentUser icon in dropdown +// Workspace Sharing Modal .current-user { + // remove currentUser icon in dropdown .ms-dropdown-icon { display: none; } + + // set opacity to 1 for multiple selection + &.workspace-user-role .button-disabled { + opacity: 1; + } } .saas-login-content__input .input-content, diff --git a/client/src/views/workspaces/WorkspaceSharingModal.vue b/client/src/views/workspaces/WorkspaceSharingModal.vue index 5c972fbeefc..1a344f84f82 100644 --- a/client/src/views/workspaces/WorkspaceSharingModal.vue +++ b/client/src/views/workspaces/WorkspaceSharingModal.vue @@ -25,9 +25,14 @@ class="modal-head-content__search" v-model="search" :placeholder="'WorkspaceSharing.searchPlaceholder'" - @change="updateSelectedUsers()" />