mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
Fix for table column resize reset issue
This commit is contained in:
parent
f5abbcfe12
commit
02be26d86a
1 changed files with 1 additions and 1 deletions
|
|
@ -227,7 +227,7 @@ export function Table({
|
|||
const changeSet = componentState ? componentState.changeSet : {};
|
||||
|
||||
const columnData = component.definition.properties.columns.value.map((column) => {
|
||||
const columnSize = columnSizes[column.key] || columnSizes[column.name];
|
||||
const columnSize = columnSizes[column.id] || columnSizes[column.name];
|
||||
const columnType = column.columnType;
|
||||
|
||||
const columnOptions = {};
|
||||
|
|
|
|||
Loading…
Reference in a new issue