Skip to content

Commit

Permalink
app could not save error on resizing column width fixed (#8635)
Browse files Browse the repository at this point in the history
  • Loading branch information
manishkushare committed Jan 29, 2024
1 parent 6d80c94 commit 524b06c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/_stores/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ function updateValueInJson(json, path, value) {
}

export function isParamFromTableColumn(appDiff, definition) {
const path = generatePath(appDiff, 'columns') || generatePath(appDiff, 'actions');
const path =
generatePath(appDiff, 'columns') || generatePath(appDiff, 'actions') || generatePath(appDiff, 'columnSizes');
if (!path) {
return false;
}
Expand Down

0 comments on commit 524b06c

Please sign in to comment.