Skip to content

Commit

Permalink
Fix filter being unclickable
Browse files Browse the repository at this point in the history
A commit caused the filter input to be unclickable, this fixes that.
  • Loading branch information
ProjectInfinity committed Mar 25, 2024
1 parent 1080147 commit 0fc20f7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/web/src/datagrid/DataGridCore.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,8 @@
if (event.target.closest('.collapseButtonMarker')) return;
if (event.target.closest('.showFormButtonMarker')) return;
if (event.target.closest('.inplaceeditor-container')) return;
if (event.target.closest('input')) return;
shiftDragStartCell = null;
// event.target.closest('table').focus();
Expand Down

0 comments on commit 0fc20f7

Please sign in to comment.