We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi.
When i get data to display with async pipe the directive doesn't work.
<h2 [clamp]="2"> {{ (fav$ | async)?.title }} </h2>
The text was updated successfully, but these errors were encountered:
Can you do like:
<span *ngIf="$fav | async as fav"> <h2 [clamp]="2"> {{ fav?.title }} </h2> </span>
Sorry, something went wrong.
No branches or pull requests
Hi.
When i get data to display with async pipe the directive doesn't work.
The text was updated successfully, but these errors were encountered: