Skip to content

Commit

Permalink
Merge pull request #909 from bcgov/feature/buttonFlatten
Browse files Browse the repository at this point in the history
EDX-1661 Flatten button for user management page
  • Loading branch information
angadhsingh1 authored Jul 20, 2023
2 parents 051efbc + c7d3ddc commit bd8ce06
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions frontend/src/components/SecureExchange/AccessUserCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
depressed
small
class="mr-2"
variant="flat"
@click="clickEditButton"
>
<v-icon
Expand All @@ -45,6 +46,7 @@
depressed
small
class="mr-2"
variant="flat"
@click="clickDeleteButton"
>
<v-icon
Expand All @@ -63,6 +65,7 @@
min-width="0.5em"
depressed
small
variant="flat"
@click="clickRelinkButton"
>
<v-icon
Expand Down Expand Up @@ -172,12 +175,14 @@
text="Cancel"
class="mr-2 cancelUserDeleteButton"
secondary
variant="flat"
:click-action="clickDeleteButton"
/>
<PrimaryButton
:id="`user-remove-action-button-${user.edxUserID}`"
text="Remove"
class="confirmUserDeleteButton"
variant="flat"
:click-action="clickRemoveButton"
/>
</v-col>
Expand Down Expand Up @@ -216,11 +221,13 @@
text="Cancel"
class="mr-2"
secondary
variant="flat"
:click-action="clickRelinkButton"
/>
<PrimaryButton
:id="`user-relink-action-button-${user.edxUserID}`"
text="Re-Link"
variant="flat"
:click-action="clickActionRelinkButton"
/>
</v-col>
Expand Down Expand Up @@ -254,12 +261,14 @@
text="Cancel"
class="mr-2"
secondary
variant="flat"
:click-action="clickEditButton"
/>
<PrimaryButton
:id="`user-save-action-button-${user.edxUserID}`"
text="Save"
:disabled="!minimumRolesSelected"
variant="flat"
:click-action="clickSaveButton"
/>
</v-col>
Expand Down

0 comments on commit bd8ce06

Please sign in to comment.