We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 396cc88 commit e6fb280Copy full SHA for e6fb280
1 file changed
pcd-website/src/components/MapView.vue
@@ -225,6 +225,9 @@ function handleKeydown(e: KeyboardEvent) {
225
e.preventDefault();
226
listOpen.value = !listOpen.value;
227
if (listOpen.value) selectedNode.value = null;
228
+ } else if (!isTextInput && (e.key === 'L' || e.key === 'l')) {
229
+ e.preventDefault();
230
+ document.getElementById('map')?.focus();
231
}
232
233
0 commit comments