Fix PR build

This commit is contained in:
FlipWarthog 2023-10-11 21:33:01 -04:00
parent 9efbcd3f77
commit bc4d8792ea
4 changed files with 9 additions and 3 deletions

View file

@ -80,7 +80,10 @@ export default {
},
methods: {
onDropdownButtonClick(event) {
event.preventDefault();
if (event) {
event.preventDefault();
}
this.$refs.menu.toggle({ currentTarget: this.$el, relatedTarget: this.$refs.button.$el });
this.isExpanded = this.$refs.menu.visible;
},