Skip to content

Commit

Permalink
Fix 203424 diskha changes prod (#338)
Browse files Browse the repository at this point in the history
* 203424 - Updated title 'Welcome To diksha' as 'Welcome To DIKSHA' in user and guest-user onboarding popup

* component initizle

---------

Co-authored-by: Tejaswini Giram <[email protected]>
  • Loading branch information
Sagar-trigyn and TejaswiniGiram19 authored Jul 3, 2024
1 parent 547eb78 commit 6c1bdb0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<div mat-dialog-title class="flex-jc-center">
<div class="sb-onboard__header">
<img [src]="tenantInfo?.logo" class="brand-logo" height="40"
alt="{{resourceService?.frmelmnts?.lbl?.welcomeToInstance | interpolate:'{instance}': tenantInfo?.titleName}}" />
<h1 class="mb-0">{{resourceService?.frmelmnts?.lbl?.welcomeToInstance | interpolate:'{instance}': tenantInfo?.titleName}}
alt="{{resourceService?.frmelmnts?.lbl?.welcomeToInstance | interpolate:'{instance}': tenantInfo?.titleName.toUpperCase()}}" />
<h1 class="mb-0">{{resourceService?.frmelmnts?.lbl?.welcomeToInstance | interpolate:'{instance}': tenantInfo?.titleName.toUpperCase()}}
</h1>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<app-location-selection *ngIf="stage === Stage.LOCATION_SELECTION" [deviceProfile]="deviceProfile" [isClosable]="false"
(close)="locationSubmit()">
<div slot="popup-header" class="w-100 text-center">
<img [src]="tenantInfo?.logo" class="brand-logo" height="40" alt="{{resourceService?.frmelmnts?.lbl?.welcomeToInstance | interpolate:'{instance}': tenantInfo?.titleName}}" />
<h1 class="mb-0 header-text">{{resourceService?.frmelmnts?.lbl?.welcomeToInstance | interpolate:'{instance}': tenantInfo?.titleName}}</h1>
<img [src]="tenantInfo?.logo" class="brand-logo" height="40" alt="{{resourceService?.frmelmnts?.lbl?.welcomeToInstance | interpolate:'{instance}': tenantInfo?.titleName.toUpperCase()}}" />
<h1 class="mb-0 header-text">{{resourceService?.frmelmnts?.lbl?.welcomeToInstance | interpolate:'{instance}': tenantInfo?.titleName.toUpperCase()}}</h1>
</div>
<div slot="popup-sub-header">
<p class="subtitle" role="heading" aria-level="1">{{resourceService?.messages?.imsg?.m0075}}</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ export class LocationSelectionComponent implements OnInit, OnDestroy, AfterViewI
dialogRef && dialogRef.close();
this.popupControlService.changePopupStatus(true);
this.close.emit({isSubmitted: this.isSubmitted});
this.ngOnInit();
console.log("called close method---->>>>>")

}

async updateUserLocation() {
Expand Down

0 comments on commit 6c1bdb0

Please sign in to comment.