fix formula column creation
This commit is contained in:
parent
faa64b9516
commit
1d0f5c4d90
|
@ -4,10 +4,15 @@ import { get as svelteGet } from "svelte/store"
|
|||
|
||||
// currently supported level of relationship depth (server side)
|
||||
const MAX_DEPTH = 1
|
||||
|
||||
//https://github.com/Budibase/budibase/issues/3030
|
||||
const internalType = "internal"
|
||||
|
||||
const TYPES_TO_SKIP = [
|
||||
FIELDS.FORMULA.type,
|
||||
FIELDS.LONGFORM.type,
|
||||
FIELDS.ATTACHMENT.type,
|
||||
internalType,
|
||||
]
|
||||
|
||||
export function getBindings({
|
||||
|
@ -53,6 +58,7 @@ export function getBindings({
|
|||
const field = Object.values(FIELDS).find(
|
||||
field => field.type === schema.type
|
||||
)
|
||||
|
||||
const label = path == null ? column : `${path}.0.${column}`
|
||||
// only supply a description for relationship paths
|
||||
const description =
|
||||
|
|
Loading…
Reference in New Issue