mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 13:36:42 +00:00
fix?(nc-gui): always show base list on changing workspace
This commit is contained in:
@@ -25,7 +25,7 @@ const placeholder = computed(() => {
|
||||
})
|
||||
|
||||
const onKeydown = (e: KeyboardEvent) => {
|
||||
if (e.altKey && e.code === 'KeyB') {
|
||||
if (e.altKey && (e.code === 'KeyB' || e.code === 'KeyD')) {
|
||||
e.preventDefault()
|
||||
inputRef.value.input?.blur()
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user