(tableId: Id, rowId: Id, partialRow: Row)
| 1612 | }); |
| 1613 | |
| 1614 | const setPartialRow = (tableId: Id, rowId: Id, partialRow: Row): Store => |
| 1615 | fluentTransaction( |
| 1616 | (tableId, rowId) => { |
| 1617 | if (validateRow(tableId, rowId, partialRow, 1)) { |
| 1618 | const table = getOrCreateTable(tableId); |
| 1619 | objMap(partialRow, (cell, cellId) => |
| 1620 | setCellIntoNewRow(tableId, table, rowId, cellId, cell as Cell), |
| 1621 | ); |
| 1622 | } |
| 1623 | }, |
| 1624 | tableId, |
| 1625 | rowId, |
| 1626 | ); |
| 1627 | |
| 1628 | const setCell = ( |
| 1629 | tableId: Id, |
nothing calls this directly
no test coverage detected
searching dependent graphs…