mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
Fix for inconsistent resized columns issue
This commit is contained in:
parent
5a5be80703
commit
9a2fbbb1de
1 changed files with 1 additions and 1 deletions
|
|
@ -384,7 +384,7 @@ export function Table({
|
|||
useEffect(() => {
|
||||
if (!state.columnResizing.isResizingColumn) {
|
||||
changeCanDrag(true);
|
||||
paramUpdated(id, 'columnSizes', state.columnResizing.columnWidths);
|
||||
paramUpdated(id, 'columnSizes', { ...columnSizes, ...state.columnResizing.columnWidths});
|
||||
} else {
|
||||
changeCanDrag(false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue