mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
Merge pull request #14099 from Classic298/ShiftHoldingFix
fix: Holding Shift Bug fixed
This commit is contained in:
commit
65a44a3900
1 changed files with 2 additions and 2 deletions
|
|
@ -366,7 +366,7 @@
|
|||
window.addEventListener('touchend', onTouchEnd);
|
||||
|
||||
window.addEventListener('focus', onFocus);
|
||||
window.addEventListener('blur-sm', onBlur);
|
||||
window.addEventListener('blur', onBlur);
|
||||
|
||||
const dropZone = document.getElementById('sidebar');
|
||||
|
||||
|
|
@ -383,7 +383,7 @@
|
|||
window.removeEventListener('touchend', onTouchEnd);
|
||||
|
||||
window.removeEventListener('focus', onFocus);
|
||||
window.removeEventListener('blur-sm', onBlur);
|
||||
window.removeEventListener('blur', onBlur);
|
||||
|
||||
const dropZone = document.getElementById('sidebar');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue