From 4d96be4bf186eff779dca371a5244b66719f919f Mon Sep 17 00:00:00 2001 From: Konstantin Kireyev Date: Thu, 22 Jan 2026 13:31:50 +0500 Subject: [PATCH] fix: current format show in custom format selection menu --- apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index 88b4b187c0..690fade92e 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -1166,7 +1166,6 @@ const PageFormatCell = props => { checked={cellFormatType === Asc.c_oAscNumFormatType.Custom} link="/custom-format/" routeProps={{ - cellFormat, onCellFormat: props.onCellFormat, setCustomFormat: props.setCustomFormat }} @@ -1224,7 +1223,7 @@ const PageCustomFormats = props => { name="custom-format" title={item.format} value={item.value} - checked={item.value === props.cellFormat} + checked={item.value === storeCellSettings.cellFormat} onChange={() => handleCellFormatClick(item.value)} /> ))}