mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 14:56:51 +00:00
fix(nc-gui): prevent alt+B from typing in search
This commit is contained in:
@@ -26,7 +26,7 @@ const placeholder = computed(() => {
|
||||
|
||||
const onKeydown = (e: KeyboardEvent) => {
|
||||
if (e.altKey && e.code === 'KeyB') {
|
||||
inputRef.value.input?.blur()
|
||||
e.preventDefault()
|
||||
} else {
|
||||
e.stopPropagation()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user