Browse Source

Use automatic formatting for generated longform fields

pull/4309/head
Andrew Kingston 4 years ago
parent
commit
a575763bf6
  1. 5
      packages/builder/src/builderStore/store/screenTemplates/utils/commonComponents.js

5
packages/builder/src/builderStore/store/screenTemplates/utils/commonComponents.js

@ -169,6 +169,11 @@ export function makeDatasourceFormComponents(datasource) {
optionsSource: "schema",
})
}
if (fieldType === "longform") {
component.customProps({
format: "auto",
})
}
if (fieldType === "array") {
component.customProps({
placeholder: "Choose an option",

Loading…
Cancel
Save