Skip to content

Commit

Permalink
Refactor #4632
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Oct 17, 2023
1 parent 4408151 commit 52d7d11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/lib/menu/Menuitem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default {
item: this.item,
index: this.index,
focused: this.isItemFocused(),
disabled: this.isItemDisabled(processedItem)
disabled: this.disabled()
}
});
},
Expand Down
2 changes: 1 addition & 1 deletion components/lib/panelmenu/PanelMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default {
index,
active: this.isItemActive(item),
focused: this.isItemFocused(item),
disabled: this.isItemDisabled(processedItem)
disabled: this.isItemDisabled(item)
}
});
},
Expand Down

0 comments on commit 52d7d11

Please sign in to comment.