setTableRow in useTableValue
This commit is contained in:
parent
f6115c6859
commit
8b1741e20b
@ -51,16 +51,14 @@ export const useTableValue = ({ tableName, rowIndex, propName }) => {
|
||||
|
||||
useEffect(() => {
|
||||
if (debouncedValue !== undefined)
|
||||
calculationStore.setTableRows(
|
||||
calculationStore.setTableRow(
|
||||
tableName,
|
||||
rowIndex,
|
||||
)([
|
||||
{
|
||||
[propName]: {
|
||||
value: debouncedValue,
|
||||
},
|
||||
)({
|
||||
[propName]: {
|
||||
value: debouncedValue,
|
||||
},
|
||||
]);
|
||||
});
|
||||
}, [debouncedValue]);
|
||||
|
||||
const cellCallBack =
|
||||
|
||||
Reference in New Issue
Block a user