Skip to content

Commit

Permalink
Merge pull request #786 from Sysvale/bugfix/tooltip-icon-button-disabled
Browse files Browse the repository at this point in the history
Bugfix/tooltip icon button disabled
  • Loading branch information
RafaelGondi authored Jan 6, 2025
2 parents fc1a54a + 43f535a commit 800a200
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sysvale/cuida",
"version": "3.72.1",
"version": "3.72.2",
"description": "A design system built by Sysvale, using storybook and Vue components",
"repository": {
"type": "git",
Expand Down
17 changes: 0 additions & 17 deletions src/components/IconButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,23 +112,6 @@ export default {
},
},
watch: {
disabled: {
handler(newValue, oldValue) {
if (newValue === oldValue) {
return;
}
if (newValue === true) {
this.innerTooltipText = null;
} else {
this.innerTooltipText = this.tooltipText;
}
},
immediate: true,
},
},
methods: {
clickHandler(e) {
if (this.disabled) {
Expand Down

0 comments on commit 800a200

Please sign in to comment.