Fixed #3750 - SplitButton/OverlayPanel: OverlayPanel won't open from default call by SplitButton

pull/3767/head
Tuğçe Küçükoğlu 2023-03-17 09:59:23 +03:00
parent bdd7c1cd43
commit 09a2f9c793
1 changed files with 4 additions and 2 deletions

View File

@ -123,9 +123,11 @@ export default {
} }
}, },
onDefaultButtonClick(event) { onDefaultButtonClick(event) {
this.$refs.menu.hide(event); if (this.isExpanded) {
this.$refs.menu.hide(event);
}
this.$emit('click'); this.$emit('click', event);
} }
}, },
computed: { computed: {