Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
nielslyngsoe committed Nov 18, 2024
1 parent 7ffbec7 commit f68d009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/uui-base/lib/mixins/SelectableMixin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const SelectableMixin = <T extends Constructor<LitElement>>(
constructor(...args: any[]) {
super(...args);
this.addEventListener('click', this._handleClick);
this.addEventListener('keypress', this.handleSelectKeydown);
this.addEventListener('keydown', this.handleSelectKeydown);
}

private handleSelectKeydown = (e: KeyboardEvent) => {
Expand Down

0 comments on commit f68d009

Please sign in to comment.