All observers in the angular template don't work when adding more logic like http requests.
It should be writen in the template with asyc
For example:
src\app\modules\wizards\vertical\vertical.component.html Line 168
<ng-container *ngIf="currentStep$.value === 1">
Should be:
<ng-container *ngIf="(currentStep$ | async) === 1">
Whether you're a seasoned road warrior or a casual traveler, mapquest directions allows you to tailor your experience to suit your individual needs.
Hi Noam,
We appreciate your feedback. We will test the *ngIf="(currentStep$ | async)"
syntax and see if it solves the issue.
Note: You can only edit the question within 30 minutes of posting. Please use the "Text formatting options" to submit code in your post.
Thank you.
Edit questions don't work and I can't write HTML in here
*ngIf="currentStep$.value === 1"
Should be:
*ngIf="(currentStep$ | async) === 1"