Skip to content

Commit

Permalink
Merge pull request #1780 from zyfra/fix/doc-issue-841-v3
Browse files Browse the repository at this point in the history
fix(docs/tab): remove $any from basic example #841
  • Loading branch information
ickisIckis authored Jun 13, 2024
2 parents 8854010 + 3dd3d3e commit e3a196c
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 e3a196c

Please sign in to comment.