1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Removed code that was changing checked flag for keypress event, because it is already handled by browswer

This commit is contained in:
matjaz321 2020-08-11 22:15:26 +02:00
parent 348ad65473
commit a6b114ce13

View file

@ -13,8 +13,6 @@ import 'webcomponents';
if (e.keyCode === 13 || e.keyCode === 32) {
e.preventDefault();
this.checked = !this.checked;
this.dispatchEvent(new CustomEvent('change', {
bubbles: true
}));