diff --git a/client/store/actions/table.ts b/client/store/actions/table.ts index 8ccde6491..2070d69f5 100644 --- a/client/store/actions/table.ts +++ b/client/store/actions/table.ts @@ -173,12 +173,12 @@ export function saveTableEditing(context: any) { if (!table || !grid) return // Don't save if not changed - let value = context.value + const value = context.value if (value === table.initialEditingValue) return const rowNumber = context.rowId const fieldName = context.columnId - if (context.cellProps.type === 'number') value = parseInt(value) + const change: types.IChange = { type: 'cell-update', rowNumber,