front-projects #27

Merged
PotapovaA merged 11 commits from front-projects into test 2026-07-03 15:08:04 +03:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit bc4e5122c6 - Show all commits

View File

@ -72,7 +72,6 @@ const EditCell = ({ refCell, onChange, disabled, value, tableId, cellId, table }
if (isFormula(curValue)) {
// Сохраняем формулу в localStorage
saveToStorage(storageKey, curValue);
// Вычисляем и сохраняем результат
try {
const formula = extractFormula(curValue);

View File

@ -176,6 +176,7 @@ const RealtimeTable = ({ formType, formId, sheetName, direction, year }) => {
measureElement: (el) => el?.offsetHeight || TABLE_ROW_HEIGHT,
},
onEditingCellChange: (cell) => {
console.log(cell, editingCell);
if (cell) {
if (editingCell) return;
contextStartEditing?.(cell.row, cell.column);