fix: fixed column span problem , now if row is incremented the columnSpan follows, same for col

This commit is contained in:
paul
2024-09-25 19:20:05 +05:30
parent ba1bfa9e03
commit 2c093c2d2d
9 changed files with 39 additions and 41 deletions

View File

@@ -719,7 +719,7 @@ class Widget extends React.Component {
})
// Set the value at the last key
if (nestedObject[lastKey])
if (nestedObject[lastKey]) // TODO: remove this check, else won't be able to catch buggy data
nestedObject[lastKey].value = value
})