We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814bdcc commit 2460fabCopy full SHA for 2460fab
packages/uui-base/lib/mixins/SelectableMixin.ts
@@ -66,7 +66,6 @@ export const SelectableMixin = <T extends Constructor<LitElement>>(
66
private handleSelectKeydown(e: KeyboardEvent) {
67
if (e.composedPath().indexOf(this.selectableTarget) !== -1) {
68
if (e.key !== ' ' && e.key !== 'Enter') return;
69
- e.preventDefault();
70
this._toggleSelect();
71
}
72
0 commit comments