mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
Fix filter being unclickable
A commit caused the filter input to be unclickable, this fixes that.
This commit is contained in:
parent
1080147085
commit
0fc20f7238
@ -1163,6 +1163,8 @@
|
|||||||
if (event.target.closest('.collapseButtonMarker')) return;
|
if (event.target.closest('.collapseButtonMarker')) return;
|
||||||
if (event.target.closest('.showFormButtonMarker')) return;
|
if (event.target.closest('.showFormButtonMarker')) return;
|
||||||
if (event.target.closest('.inplaceeditor-container')) return;
|
if (event.target.closest('.inplaceeditor-container')) return;
|
||||||
|
if (event.target.closest('input')) return;
|
||||||
|
|
||||||
|
|
||||||
shiftDragStartCell = null;
|
shiftDragStartCell = null;
|
||||||
// event.target.closest('table').focus();
|
// event.target.closest('table').focus();
|
||||||
|
Loading…
Reference in New Issue
Block a user