update form example
This commit is contained in:
parent
f213a14b33
commit
387e90506c
1 changed files with 2 additions and 2 deletions
|
@ -39,9 +39,9 @@ const characteristics: ControlConfig[] = [
|
||||||
name: "is-good-looking",
|
name: "is-good-looking",
|
||||||
type: "radio",
|
type: "radio",
|
||||||
label: "Is Good Looking?",
|
label: "Is Good Looking?",
|
||||||
value: ["checked"],
|
value: [{value: "checked", label: "checked", checked: true}, {value: "not checked", label: "not checked", checked: false}],
|
||||||
labelPosition: "right",
|
|
||||||
},
|
},
|
||||||
|
{name: 'required', label: 'Required Field', placeholder: 'but empty 😔', validators: [Validators.required]},
|
||||||
{
|
{
|
||||||
name: "is-awesome",
|
name: "is-awesome",
|
||||||
type: "checkbox",
|
type: "checkbox",
|
||||||
|
|
Loading…
Reference in a new issue