From 562707f4187398a9c318102665419c318f5eaca0 Mon Sep 17 00:00:00 2001 From: PotapovaA Date: Wed, 22 Jul 2026 14:48:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=D0=B0=20=D0=BA=D0=BE=D0=BF=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=B0=D0=BD=D0=BD=D1=8B=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/RealtimeTable/utils/cellUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/RealtimeTable/utils/cellUtils.js b/web/src/components/RealtimeTable/utils/cellUtils.js index 304a8ab..8ce301c 100644 --- a/web/src/components/RealtimeTable/utils/cellUtils.js +++ b/web/src/components/RealtimeTable/utils/cellUtils.js @@ -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") {