Skip to content

Commit

Permalink
fix(projects): fix PinToggler label
Browse files Browse the repository at this point in the history
  • Loading branch information
honghuangdc committed Jun 6, 2024
1 parent 7fa5136 commit b1f9c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/pin-toggler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const icon = computed(() => (props.pin ? 'mdi-pin-off' : 'mdi-pin'));
</script>

<template>
<ButtonIcon :tooltip-content="pin ? $t('icon.pin') : $t('icon.unpin')" tooltip-placement="bottomLeft" trigger-parent>
<ButtonIcon :tooltip-content="pin ? $t('icon.unpin') : $t('icon.pin')" tooltip-placement="bottomLeft" trigger-parent>
<SvgIcon :icon="icon" />
</ButtonIcon>
</template>
Expand Down

0 comments on commit b1f9c4c

Please sign in to comment.