You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When resizing a column in BAITable, the order of items changes unexpectedly. This issue needs to be addressed to maintain the intended order during column resizing.
The text was updated successfully, but these errors were encountered:
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
When resizing a column in BAITable, the order of items changes unexpectedly. This issue needs to be addressed to maintain the intended order during column resizing.
The text was updated successfully, but these errors were encountered: