mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 12:46:57 +00:00
fix: limit the number to safe integers
This commit is contained in:
@@ -44,7 +44,7 @@ export default function convertCellData(
|
||||
throw new SilentTypeConversionError()
|
||||
}
|
||||
}
|
||||
return parsedNumber
|
||||
return toSafeInteger(parsedNumber)
|
||||
}
|
||||
case UITypes.Currency:
|
||||
case UITypes.Percent:
|
||||
|
||||
Reference in New Issue
Block a user