We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff13207 commit f63e873Copy full SHA for f63e873
src/ui.js
@@ -40,6 +40,9 @@ function FormField(props) {
40
help_text: props.schema.help_text || props.schema.helpText,
41
};
42
43
+ if (props.schema.placeholder)
44
+ inputProps.placeholder = props.schema.placeholder;
45
+
46
let type = props.schema.type;
47
let choices = props.schema.choices || props.schema.enum;
48
0 commit comments