Fix autoscreen-generated form component default settings
This commit is contained in:
parent
1558d631f5
commit
e8442c8161
|
@ -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 =
|
||||
|
|
Loading…
Reference in New Issue