form-4-add-row #54

Merged
PotapovaA merged 6 commits from form-4-add-row into test 2026-07-29 10:56:41 +03:00
Showing only changes of commit 562707f418 - Show all commits

View File

@ -42,7 +42,7 @@ export function setNewValueToData(data, colId, rowId, value) {
}
export function updateCells(data, newRows) {
const updatedRows = JSON.parse(JSON.stringify(data));
const updatedRows = structuredClone(data);
function deepMerge(target, source) {
if (!source || typeof source !== "object") {