Skip to content

Instantly share code, notes, and snippets.

View bjornharvold's full-sized avatar
🎯
In the Zone

Bjorn Harvold bjornharvold

🎯
In the Zone
View GitHub Profile
@bjornharvold
bjornharvold / angular-control-flow.diff
Created November 17, 2023 02:28
Shows the inconsistencies we are seeing with the control-flow schematic in Angular 17.0.3
2,5c2,6
< <ng-container
< *ngIf="loading$ | async; then showLoadingIndicator; else showBooking"
< >
< </ng-container>
---
> @if (loading$ | async) {
> #showLoadingIndicator|
> } @else {
> #showBooking|