add AI column from import if already defined
This commit is contained in:
parent
ff4d919083
commit
313bd9b017
|
@ -8,6 +8,7 @@ const MAX_DEPTH = 1
|
||||||
|
|
||||||
const TYPES_TO_SKIP = [
|
const TYPES_TO_SKIP = [
|
||||||
FieldType.FORMULA,
|
FieldType.FORMULA,
|
||||||
|
FieldType.AI,
|
||||||
FieldType.LONGFORM,
|
FieldType.LONGFORM,
|
||||||
FieldType.SIGNATURE_SINGLE,
|
FieldType.SIGNATURE_SINGLE,
|
||||||
FieldType.ATTACHMENTS,
|
FieldType.ATTACHMENTS,
|
||||||
|
|
|
@ -80,6 +80,9 @@
|
||||||
if (columnType === FieldType.FORMULA) {
|
if (columnType === FieldType.FORMULA) {
|
||||||
return "https://docs.budibase.com/docs/formula"
|
return "https://docs.budibase.com/docs/formula"
|
||||||
}
|
}
|
||||||
|
if (columnType === FieldType.AI) {
|
||||||
|
return "https://docs.budibase.com/docs/ai"
|
||||||
|
}
|
||||||
if (columnType === FieldType.OPTIONS) {
|
if (columnType === FieldType.OPTIONS) {
|
||||||
return "https://docs.budibase.com/docs/options"
|
return "https://docs.budibase.com/docs/options"
|
||||||
}
|
}
|
||||||
|
|
|
@ -216,10 +216,6 @@ export async function inputProcessing(
|
||||||
if (field.type === FieldType.FORMULA) {
|
if (field.type === FieldType.FORMULA) {
|
||||||
delete clonedRow[key]
|
delete clonedRow[key]
|
||||||
}
|
}
|
||||||
// remove any AI values, they are to be generated
|
|
||||||
if (field.type === FieldType.AI) {
|
|
||||||
delete clonedRow[key]
|
|
||||||
}
|
|
||||||
// otherwise coerce what is there to correct types
|
// otherwise coerce what is there to correct types
|
||||||
else {
|
else {
|
||||||
clonedRow[key] = coerce(value, field.type)
|
clonedRow[key] = coerce(value, field.type)
|
||||||
|
|
Loading…
Reference in New Issue