Skip to content

Commit

Permalink
Fixed:- optional check implemented in surveyPopup
Browse files Browse the repository at this point in the history
  • Loading branch information
Afzal84 committed Aug 8, 2024
1 parent 7d4973c commit 296c62f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
<a mat-icon-button class="close-button flex" (click)="closeCard()">
<mat-icon>close</mat-icon>
</a>
<a class="survey-img-link desktop-img" href={{surveyPopup.surveyUrl}}>
<a class="survey-img-link desktop-img" href={{surveyPopup?.surveyUrl}}>
<!-- <img class="survey-img" src={{surveyPopupData.l}} /> -->
<img i18n-alt alt="Page Banner" [src]="surveyPopup.banners"
<img i18n-alt alt="Page Banner" [src]="surveyPopup?.banners"
wsUtilsImageResponsive class="banner-image-solo" />
</a>

<div class="mobile-img-box flex flex-col items-center justify-center">
<img i18n-alt alt="Page Banner" [src]="surveyPopup.banners"
<img i18n-alt alt="Page Banner" [src]="surveyPopup?.banners"
wsUtilsImageResponsive class="mobile-banner-image-solo" />
<a class="mobile-survey-link" href={{surveyPopup.surveyUrl}}>{{surveyPopup.buttonName}} </a>
<a class="mobile-survey-link" href={{surveyPopup?.surveyUrl}}>{{surveyPopup?.buttonName}} </a>
</div>


Expand Down

0 comments on commit 296c62f

Please sign in to comment.