web: use Cmd-a on macOS to select all items in list

This commit is contained in:
Abdullah Atta
2023-12-22 11:38:40 +05:00
parent a31e863c7b
commit 9cc17c29f6

View File

@@ -128,7 +128,7 @@ export function useKeyboardListNavigation(
focusItemAt(nextIndex);
return true;
},
"Ctrl-a": () => {
"Mod-a": () => {
resetSelection();
for (let i = 0; i < length; ++i) select(i);
return true;