From 07ca4ef532d5c63e9478283be4c079642df3508b Mon Sep 17 00:00:00 2001 From: Marcella Maki Date: Thu, 12 May 2022 11:23:25 -0400 Subject: [PATCH] fix linting --- lib/KDropdownMenu.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/KDropdownMenu.vue b/lib/KDropdownMenu.vue index fcc96cb5e..9558e9f26 100644 --- a/lib/KDropdownMenu.vue +++ b/lib/KDropdownMenu.vue @@ -124,7 +124,7 @@ handleOpenMenuNavigation(event) { // identify the menu state and length if (!this.$refs.popover && !this.$refs.popover.$el) { - return + return; } const popover = this.$refs.popover.$el; const menuElements = this.$refs.menu.$el.querySelector('div').children; @@ -145,7 +145,7 @@ sibling ? this.$nextTick(() => sibling.focus()) : this.$nextTick(() => this.setFocus()); // if a tab key, not an arrow key, close the popover and advance to next item in the tab index } else if (event.keyCode == 9 && popoverIsOpen) { - this.closePopover() + this.closePopover(); } }, handleSelection(selection) {