Browse Source

Use new rich text field in build backend UI

pull/4434/head
Andrew Kingston 4 years ago
parent
commit
66e104f02b
  1. 4
      packages/builder/src/components/backend/DataTable/RowFieldControl.svelte

4
packages/builder/src/components/backend/DataTable/RowFieldControl.svelte

@ -4,9 +4,9 @@
Select, Select,
DatePicker, DatePicker,
Toggle, Toggle,
TextArea,
Multiselect, Multiselect,
Label, Label,
RichTextField,
} from "@budibase/bbui" } from "@budibase/bbui"
import Dropzone from "components/common/Dropzone.svelte" import Dropzone from "components/common/Dropzone.svelte"
import { capitalise } from "helpers" import { capitalise } from "helpers"
@ -43,7 +43,7 @@
{:else if type === "link"} {:else if type === "link"}
<LinkedRowSelector bind:linkedRows={value} schema={meta} /> <LinkedRowSelector bind:linkedRows={value} schema={meta} />
{:else if type === "longform"} {:else if type === "longform"}
<TextArea {label} bind:value /> <RichTextField {label} height="200px" bind:value />
{:else if type === "json"} {:else if type === "json"}
<Label>{label}</Label> <Label>{label}</Label>
<Editor <Editor

Loading…
Cancel
Save