Fix frontend build issue.
This commit is contained in:
parent
57d512b041
commit
4fe30355f2
|
@ -13,7 +13,7 @@
|
|||
import { getColumnIcon } from "../lib/utils"
|
||||
import MigrationModal from "../controls/MigrationModal.svelte"
|
||||
import { debounce } from "../../../utils/utils"
|
||||
import { FieldType, FormulaTypes } from "@budibase/types"
|
||||
import { FieldType, FormulaType } from "@budibase/types"
|
||||
import { TableNames } from "../../../constants"
|
||||
|
||||
export let column
|
||||
|
@ -96,7 +96,7 @@
|
|||
const { type, formulaType } = col.schema
|
||||
return (
|
||||
searchableTypes.includes(type) ||
|
||||
(type === FieldType.FORMULA && formulaType === FormulaTypes.STATIC)
|
||||
(type === FieldType.FORMULA && formulaType === FormulaType.STATIC)
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue