fix?(nc-gui): always show base list on changing workspace

This commit is contained in:
Ramesh Mane
2025-06-03 06:56:01 +00:00
parent aacc6c2c8e
commit b48dc8828a

View File

@@ -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 {