Merge branch 'feature/multi-user-type-column' of github.com:Budibase/budibase into fix/null-user-column-value
This commit is contained in:
commit
2ef5cb3894
|
@ -1,5 +1,6 @@
|
|||
<script>
|
||||
import { getContext, onMount, tick } from "svelte"
|
||||
import { FieldType } from "@budibase/types"
|
||||
import GridCell from "./GridCell.svelte"
|
||||
import { Icon, Popover, Menu, MenuItem, clickOutside } from "@budibase/bbui"
|
||||
import { getColumnIcon } from "../lib/utils"
|
||||
|
@ -25,11 +26,12 @@
|
|||
} = getContext("grid")
|
||||
|
||||
const bannedDisplayColumnTypes = [
|
||||
"link",
|
||||
"array",
|
||||
"attachment",
|
||||
"boolean",
|
||||
"json",
|
||||
FieldType.LINK,
|
||||
FieldType.ARRAY,
|
||||
FieldType.ATTACHMENT,
|
||||
FieldType.BOOLEAN,
|
||||
FieldType.JSON,
|
||||
FieldType.BB_REFERENCE,
|
||||
]
|
||||
|
||||
let anchor
|
||||
|
|
|
@ -219,10 +219,7 @@ export async function outputProcessing<T extends Row[] | Row>(
|
|||
? await linkRows.attachFullLinkedDocs(table, safeRows)
|
||||
: safeRows
|
||||
|
||||
// process formulas
|
||||
enriched = processFormulas(table, enriched, { dynamic: true }) as Row[]
|
||||
|
||||
// set the attachments URLs
|
||||
// process complex types: attachements, bb references...
|
||||
for (let [property, column] of Object.entries(table.schema)) {
|
||||
if (column.type === FieldTypes.ATTACHMENT) {
|
||||
for (let row of enriched) {
|
||||
|
@ -242,6 +239,10 @@ export async function outputProcessing<T extends Row[] | Row>(
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// process formulas after the complex types had been processed
|
||||
enriched = processFormulas(table, enriched, { dynamic: true }) as Row[]
|
||||
|
||||
if (opts.squash) {
|
||||
enriched = (await linkRows.squashLinksToPrimaryDisplay(
|
||||
table,
|
||||
|
|
Loading…
Reference in New Issue