Skip to content

Commit 30ee714

Browse files
authored
Fix click on Vue menu in compact mode (#80)
1 parent d1384d2 commit 30ee714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/vue/application/src/components/side-nav-menu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default {
4545
},
4646
4747
handleItemClick(e) {
48-
if (!e.itemData.path) {
48+
if (!e.itemData.path || this.compactMode) {
4949
return;
5050
}
5151

0 commit comments

Comments
 (0)