mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
fixes: table column data not updated on boxes changes in container (#7919)
This commit is contained in:
parent
fb6bf5a157
commit
e49ae2d40d
1 changed files with 1 additions and 1 deletions
|
|
@ -413,7 +413,7 @@ export const Container = ({
|
|||
|
||||
const paramUpdated = useCallback(
|
||||
(id, param, value) => {
|
||||
if (boxes.length && Object.keys(value)?.length > 0) {
|
||||
if (Object.keys(value)?.length > 0) {
|
||||
setBoxes((boxes) =>
|
||||
update(boxes, {
|
||||
[id]: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue