fix(components): fix PinToggler label. fixed #407

This commit is contained in:
Soybean 2024-04-26 02:22:51 +08:00
parent 4749b411bd
commit c0ed1f26f7

View File

@ -15,7 +15,7 @@ const icon = computed(() => (props.pin ? 'mdi-pin-off' : 'mdi-pin'));
<template>
<ButtonIcon
:tooltip-content="pin ? $t('icon.pin') : $t('icon.unpin')"
:tooltip-content="pin ? $t('icon.unpin') : $t('icon.pin')"
tooltip-placement="bottom-start"
:z-index="100"
>