mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fixed query params not working (#2517)
This commit is contained in:
parent
4668b02fa5
commit
8ce5cfc01b
1 changed files with 4 additions and 2 deletions
|
|
@ -78,8 +78,10 @@ export const QueryPanel = ({ darkMode }) => {
|
|||
|
||||
const onMouseDown = useCallback(
|
||||
(e) => {
|
||||
e.preventDefault();
|
||||
if (isTopOfQueryPanel) setIsDraggingQueryPane(true);
|
||||
if (isTopOfQueryPanel) {
|
||||
e.preventDefault();
|
||||
setIsDraggingQueryPane(true);
|
||||
}
|
||||
},
|
||||
[isTopOfQueryPanel]
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue