Skip to content

Commit

Permalink
fixup! Fix the edit delete tag order and the icon styling
Browse files Browse the repository at this point in the history
Signed-off-by: greta <[email protected]>
  • Loading branch information
GretaD committed Dec 5, 2023
1 parent fad3e52 commit e8df5b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/TagItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<NcActionButton v-if="renameTagLabel"
@click="openEditTag">
<template #icon>
<IconEdit :size="20" />
<IconEdit :size="22" />
</template>
{{ t('mail','Edit name or color') }}
</NcActionButton>
Expand All @@ -27,14 +27,14 @@
<ActionText
v-if="showSaving">
<template #icon>
<IconLoading :size="20" />
<IconLoading :size="22" />
</template>
{{ t('mail', 'Saving new tag name …') }}
</ActionText>
<NcActionButton v-if="!tag.isDefaultTag || !renameTagLabel"
@click="deleteTag">
<template #icon>
<DeleteIcon :size="20" />
<DeleteIcon :size="22" />
</template>
{{ t('mail','Delete tag') }}
</NcActionButton>
Expand Down

0 comments on commit e8df5b6

Please sign in to comment.