Ignore alt key combinations when navigating systems with arrow keys (#1698)

This commit is contained in:
Sven van Ginkel
2026-01-31 20:44:43 +01:00
committed by GitHub
parent 79ca31d770
commit 5797f8a6ad

View File

@@ -363,7 +363,8 @@ export default memo(function SystemDetail({ id }: { id: string }) {
e.target instanceof HTMLTextAreaElement ||
e.shiftKey ||
e.ctrlKey ||
e.metaKey
e.metaKey ||
e.altKey
) {
return
}