Skip to content

Commit

Permalink
focus fix (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibarrick authored and miguelcobain committed Oct 31, 2016
1 parent 4e93868 commit 042e35a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion addon/components/paper-select-menu-inner.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ export default PaperMenuContentInner.extend({
} else {
focusTarget = focusTarget[0];
}
focusTarget.focus();
if (focusTarget) {
focusTarget.focus();
}
});
},

Expand Down

0 comments on commit 042e35a

Please sign in to comment.