Skip to content

Commit

Permalink
fix(InvitationHandler): adjust labels and icon appearance
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
  • Loading branch information
Antreesy committed Feb 22, 2024
1 parent 128b9df commit 5bdc7fa
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/components/LeftSidebar/InvitationHandler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
</span>
</div>
<NcButton type="tertiary"
aria-label="t('spreed', 'Decline invitation')"
title="t('spreed', 'Decline invitation')"
:aria-label="t('spreed', 'Decline invitation')"
:title="t('spreed', 'Decline invitation')"
:disabled="isLoading"
@click="rejectShare(item.id)">
<template #icon>
Expand All @@ -57,7 +57,8 @@
</template>
</NcButton>
<NcButton type="primary"
aria-label="t('spreed', 'Accept invitation')"
:aria-label="t('spreed', 'Accept invitation')"
:title="t('spreed', 'Accept invitation')"
:disabled="isLoading"
@click="acceptShare(item.id)">
<template #icon>
Expand Down Expand Up @@ -121,6 +122,7 @@ export default {
.map(item => ({
...item,
type: CONVERSATION.TYPE.GROUP,
isDummyConversation: true,
}))
},
},
Expand Down Expand Up @@ -201,6 +203,7 @@ export default {
display: flex;
flex-direction: column;
margin-right: auto;
padding-left: 4px;

&__name {
font-weight: bold;
Expand Down

0 comments on commit 5bdc7fa

Please sign in to comment.