You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when we bind an angular form to the fluent-text-input component, e.g., <fluent-text-input [qeAutofocus] placeholder="Name" formControlName="name"/>
if we try and update the value of the control in the component, e.g., this.form.controls.name.setValue('foo')
the control isn't updated. The expected behaviour is that if you change the value of the form controller it should update the value of the input, but it doesn't seem to change dynamically
The text was updated successfully, but these errors were encountered:
when we bind an angular form to the fluent-text-input component, e.g.,
<fluent-text-input [qeAutofocus] placeholder="Name" formControlName="name"/>
if we try and update the value of the control in the component, e.g.,
this.form.controls.name.setValue('foo')
the control isn't updated. The expected behaviour is that if you change the value of the form controller it should update the value of the input, but it doesn't seem to change dynamically
The text was updated successfully, but these errors were encountered: