Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: resizing column action causes order change in BAITable (#2831)
Resolves #2830 Prevents column sorting when resizing columns in BAITable This PR fixes an issue where users could accidentally trigger column sorting while resizing table columns. It adds a debounced resize state check that temporarily disables click events during and shortly after column resizing operations. **Implementation details:** - Added `isResizing` state to track when a column is being resized - Implemented a 100ms debounced version of the resize state - Modified click handler to prevent column sorting when resize is in progress - Preserved original click behavior when not resizing
- Loading branch information