fix(web): Album multi-select 'm' shortcut prevents typing m in title box (#21249)

change album multi-select shortcut to ctrl
This commit is contained in:
xCJPECKOVERx 2025-08-25 12:52:26 -04:00 committed by GitHub
parent be5b4cb1d1
commit d5f3629c49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,7 +133,7 @@
await onEnter();
break;
}
case 'm': {
case 'Control': {
e.preventDefault();
handleMultiSelect();
break;