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
Hi, first of all I would like to congratulate you for the component.
I'm having a usage problem in the following situation.
I have a query that returns me Observable, but when I perform the subscribe from that Observable and add it to my formModel and formGroup, my screen goes white as if it were nothing inside.
Hi, first of all I would like to congratulate you for the component.
I'm having a usage problem in the following situation.
I have a query that returns me Observable, but when I perform the subscribe from that Observable and add it to my formModel and formGroup, my screen goes white as if it were nothing inside.
Ex does not work:
observable.subscribe ((itemObservable) => { this.title = 'Test'; this.formModel = itemObservable; this.formGroup = this.formService.createFormGroup (itemObservable); });
Ex works:
this.title = 'Test'; This.formModel = itemXpto; This.formGroup = this.formService.createFormGroup (itemXpto);
Has anyone ever experienced this?
The text was updated successfully, but these errors were encountered: