You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-05 06:00:24 +02:00
fix(web): shift-select (#8093)
* fix(web): shift-select * remove unused code * proper fix
This commit is contained in:
@ -207,7 +207,7 @@
|
||||
return;
|
||||
}
|
||||
|
||||
if (matchesShortcut(event, { key: 'Shift' })) {
|
||||
if (matchesShortcut(event, { key: 'Shift', shift: true })) {
|
||||
event.preventDefault();
|
||||
shiftKeyIsDown = true;
|
||||
}
|
||||
@ -218,7 +218,7 @@
|
||||
return;
|
||||
}
|
||||
|
||||
if (matchesShortcut(event, { key: 'Shift' })) {
|
||||
if (matchesShortcut(event, { key: 'Shift', shift: true })) {
|
||||
event.preventDefault();
|
||||
shiftKeyIsDown = false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user