Support decimal commas and cell units

This commit is contained in:
Julian Appel 2026-07-31 14:33:47 +02:00
parent 734a2bcfc4
commit 5fb81bab04
4 changed files with 36 additions and 10 deletions

View file

@ -27,6 +27,7 @@ import {
buildDeviceRowEditPatch,
defaultVisibleColumnKeys,
deviceFieldKeys,
formatCellValue,
formatPhaseTypeLabel,
formatValue,
getCircuitSectionLabel,
@ -4392,7 +4393,7 @@ export function CircuitTreeEditor(props: { projectId: string; circuitListId: str
}}
/>
) : (
formatValue(cell.value, column.key)
formatCellValue(cell.value, column.key)
)}
</td>
);