Fix number csv import (#4114)

fix number csv import
This commit is contained in:
brendanlaschke 2024-02-21 17:35:17 +01:00 committed by GitHub
parent 1c829b2ea1
commit f407c70356
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@ export const getSpreadSheetValidation = (
return [
{
rule: 'regex',
value: '^d+$',
value: '^\\d+$',
errorMessage: fieldName + ' must be a number',
level: 'error',
},