1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-27 23:46:39 +01:00

feat: duckdb wasm capibility (#3272)

This commit is contained in:
Amir Raminfar
2024-09-18 17:27:46 -07:00
committed by GitHub
parent f1553e33e1
commit 90b9d97685
26 changed files with 851 additions and 260 deletions

View File

@@ -34,7 +34,7 @@ const { searchQueryFilter, showSearch, resetSearch, isValidQuery } = useSearchFi
const { style } = useDraggable(container);
onKeyStroke("f", (e) => {
if (e.ctrlKey || e.metaKey) {
if ((e.ctrlKey || e.metaKey) && !e.shiftKey) {
showSearch.value = true;
nextTick(() => input.value?.focus() || input.value?.select());
e.preventDefault();