Skip to content

Commit

Permalink
fix: icon button tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Jul 18, 2024
1 parent 87e2084 commit 0702639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/IconButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const labelOrLoadingText = computed(() => {
})
const tooltipTitle = computed(() => {
return props.hideLabel ? props.label : null
return props.hideLabel ? props.label : ''
})
const buttonProps = computed(() => ({
Expand Down

0 comments on commit 0702639

Please sign in to comment.