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

Merge pull request #4813 from dmitrylyzo/backport/slider-force-change

This commit is contained in:
Bill Thornton 2023-09-29 07:55:45 -04:00 committed by GitHub
commit 1250c76567
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -408,6 +408,13 @@ import '../emby-input/emby-input';
e.preventDefault();
e.stopPropagation();
break;
case 'Enter':
if (this.keyboardDragging) {
finishKeyboardDragging(this);
e.preventDefault();
e.stopPropagation();
}
break;
}
}