Fix autoscreen-generated form component default settings

This commit is contained in:
Andrew Kingston 2021-08-17 13:58:51 +01:00
parent 1558d631f5
commit e8442c8161
1 changed files with 5 additions and 1 deletions

View File

@ -161,7 +161,11 @@ export function makeDatasourceFormComponents(datasource) {
placeholder: field,
})
if (fieldType === "options") {
component.customProps({ placeholder: "Choose an option " })
component.customProps({
placeholder: "Choose an option",
optionsType: "select",
optionsSource: "schema",
})
}
if (fieldType === "link") {
let placeholder =