1
0
Fork 0
mirror of synced 2024-06-18 18:35:37 +12:00

Merge branch 'master' into remove-mongodb-mock

This commit is contained in:
Sam Rose 2024-03-25 09:34:33 +00:00 committed by GitHub
commit 5ecefa217a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 22 deletions

View file

@ -1,5 +1,5 @@
{
"version": "2.22.11",
"version": "2.22.12",
"npmClient": "yarn",
"packages": [
"packages/*",

View file

@ -34,12 +34,7 @@
import { getBindings } from "components/backend/DataTable/formula"
import JSONSchemaModal from "./JSONSchemaModal.svelte"
import { ValidColumnNameRegex } from "@budibase/shared-core"
import {
FieldType,
FieldSubtype,
SourceName,
FieldTypeSubtypes,
} from "@budibase/types"
import { FieldType, FieldSubtype, SourceName } from "@budibase/types"
import RelationshipSelector from "components/common/RelationshipSelector.svelte"
import { RowUtils } from "@budibase/frontend-core"
import ServerBindingPanel from "components/common/bindings/ServerBindingPanel.svelte"
@ -710,21 +705,6 @@
thin
text="Allow multiple users"
/>
{:else if editableColumn.type === FieldType.ATTACHMENT}
<Toggle
value={editableColumn.subtype !== FieldTypeSubtypes.ATTACHMENT.SINGLE &&
// Checking config before the subtype was added
editableColumn.constraints?.length?.maximum !== 1}
on:change={e => {
if (!e.detail) {
editableColumn.subtype = FieldTypeSubtypes.ATTACHMENT.SINGLE
} else {
delete editableColumn.subtype
}
}}
thin
text="Allow multiple"
/>
{/if}
{#if editableColumn.type === AUTO_TYPE || editableColumn.autocolumn}
<Select