Skip to content

Commit

Permalink
[MS] Update
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienSvstr committed Nov 18, 2024
1 parent adc67b4 commit 5b06201
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
5 changes: 1 addition & 4 deletions client/src/components/users/UserStatusTag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@
@click="showTooltip ? openInformationTooltip($event, getStatusDescription()) : null"
>
<ion-chip
class="tag-status"
class="tag-status button-medium"
:class="{
revoked: revoked,
active: !revoked && !frozen,
frozen: frozen,
'button-small': !large,
'button-medium': large,
}"
>
<ion-icon
Expand All @@ -34,7 +32,6 @@ const props = defineProps<{
revoked: boolean;
frozen?: boolean;
showTooltip?: boolean;
large?: boolean;
}>();

const statusText = computed((): Translatable => {
Expand Down
3 changes: 1 addition & 2 deletions client/src/views/users/UserDetailsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
:revoked="user.isRevoked()"
:frozen="user.isFrozen()"
:show-tooltip="true"
:large="true"
/>
</div>

Expand Down Expand Up @@ -232,7 +231,7 @@ onMounted(async () => {
align-items: center;
padding: 1rem 1.5rem 1rem 1rem;
margin: 0;
border-radius: var(--parsec-radius-6);
border-radius: var(--parsec-radius-6);
box-shadow: none;

&::after {
Expand Down

0 comments on commit 5b06201

Please sign in to comment.