Skip to content

Commit

Permalink
fix(docs/tab): remove $any from basic example #841
Browse files Browse the repository at this point in the history
  • Loading branch information
ZurabDev committed Jun 7, 2024
1 parent 8caf3f8 commit 4293d7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="container">
<prizm-tabs [(activeTabIndex)]="activeTabIndex">
<prizm-tab *ngFor="let item of tabs" [content]="$any(item.title)" [type]="'line'"> </prizm-tab>
<prizm-tab *ngFor="let item of tabs" [content]="item.title ?? ''" [type]="'line'"> </prizm-tab>
</prizm-tabs>
</div>

Expand Down

0 comments on commit 4293d7b

Please sign in to comment.