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 606e4d1 commit fd41cccCopy full SHA for fd41ccc
packages/ui/src/io/input/input.component.ts
@@ -56,12 +56,12 @@ export class InputComponent extends DynamicSlotComponent implements ControlValue
56
}
57
if (!this.group) {
58
this.group = new FormGroup({
59
- [this.property || this.field.property || 'input']: new FormControl()
+ [this.property || this.field.property || 'input']: this.control
60
});
61
62
const data = {
63
group: this.group,
64
- control: this.control || this.group ? this.group.get(this.field.property) : null,
+ control: this.control,
65
item: this.item,
66
field: this.field,
67
input: this
0 commit comments