Remove date leniency.
This commit is contained in:
parent
7f7ed9f0cb
commit
0561ca6e1b
|
@ -150,12 +150,6 @@ export async function inputProcessing(
|
||||||
clonedRow[key] = coerce(value, field.type)
|
clonedRow[key] = coerce(value, field.type)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (field.type === FieldType.DATETIME) {
|
|
||||||
if (typeof clonedRow[key] === "string") {
|
|
||||||
clonedRow[key] = clonedRow[key].trim()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// remove any attachment urls, they are generated on read
|
// remove any attachment urls, they are generated on read
|
||||||
if (field.type === FieldType.ATTACHMENTS) {
|
if (field.type === FieldType.ATTACHMENTS) {
|
||||||
const attachments = clonedRow[key]
|
const attachments = clonedRow[key]
|
||||||
|
|
Loading…
Reference in New Issue