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

change album multi-select shortcut to ctrl
pull/21275/head
xCJPECKOVERx 2025-08-25 12:52:26 +07:00 committed by GitHub
parent be5b4cb1d1
commit d5f3629c49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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