diff --git a/ui-v2/app/components/aria-menu/index.js b/ui-v2/app/components/aria-menu/index.js index 2c1daff70..78eca1e94 100644 --- a/ui-v2/app/components/aria-menu/index.js +++ b/ui-v2/app/components/aria-menu/index.js @@ -82,9 +82,10 @@ export default Component.extend({ // TODO: We need to use > somehow here so we don't select submenus const $items = [...this.dom.elements(MENU_ITEMS, this.$menu)]; if (!this.expanded) { - this.$trigger.dispatchEvent(new MouseEvent('click')); if (e.keyCode === ENTER || e.keyCode === SPACE) { - $items[0].focus(); + next(() => { + $items[0].focus(); + }); return; } } diff --git a/ui-v2/app/components/popover-select/index.hbs b/ui-v2/app/components/popover-select/index.hbs index 364505d6d..ce71b151a 100644 --- a/ui-v2/app/components/popover-select/index.hbs +++ b/ui-v2/app/components/popover-select/index.hbs @@ -1,5 +1,5 @@
- + {{selected.value}}