Skip to content

Commit f4b92e4

Browse files
committed
fix(details-page): check iframeUrlWithJWTToken before usage
1 parent 768582b commit f4b92e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/features/home/details/details.page.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
"
5656
>
5757
<div class="slide">
58-
<iframe [src]="iframeUrlWithJWTToken$ | ngrxPush"></iframe>
58+
<div *ngIf="iframeUrlWithJWTToken$ | ngrxPush as iframeUrlWithJWTToken">
59+
<iframe [src]="iframeUrlWithJWTToken"></iframe>
60+
</div>
5961
</div>
6062
</ng-template>
6163
</swiper>

0 commit comments

Comments
 (0)