Skip to content

Commit

Permalink
Fix reordered culomns translation error
Browse files Browse the repository at this point in the history
Signed-off-by: achour94 <[email protected]>
  • Loading branch information
achour94 committed Jan 23, 2025
1 parent 50306c1 commit 332f756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const App = () => {

const index = param.index;

const equipmentAllColumnsIds = tablesDefinitionIndexes.get(index).columns.map((item) => item.id);
const equipmentAllColumnsIds = tablesDefinitionIndexes.get(index).columns.map((item) => item.colId);

const equipmentReorderedColumnsIds = JSON.parse(reorderedColumnsParams[index].value);
const equipmentNewColumnsIds = equipmentAllColumnsIds.filter(
Expand Down

0 comments on commit 332f756

Please sign in to comment.