Browse Source

Fixed bug

Ariel Fuggini 5 years ago
parent
commit
bab71485ca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/dropdown.js

+ 1 - 1
src/components/dropdown.js

@@ -102,7 +102,7 @@ export class DropdownList extends BaseDropdown {
     }
 
     handleKeyUp (ev) {
-        super.handleKeyUp();
+        super.handleKeyUp(ev);
         if (ev.keyCode === converse.keycodes.DOWN_ARROW && !this.navigator.enabled) {
             this.enableArrowNavigation(ev);
         }