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 bbeff5b commit 7434c73Copy full SHA for 7434c73
core/src/components/checkbox/checkbox.tsx
@@ -182,7 +182,7 @@ export class Checkbox implements ComponentInterface {
182
};
183
184
private onKeyDown = (ev: KeyboardEvent) => {
185
- if (ev.key === ' ' || ev.key === 'Enter') {
+ if (ev.key === ' ') {
186
ev.preventDefault();
187
if (!this.disabled) {
188
this.toggleChecked(ev);
0 commit comments