Skip to content

Commit

Permalink
Fixed the header issue of playlist page
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhikachhawa24 committed May 31, 2024
1 parent 4ad7717 commit 48cb8f8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
</ion-button>
</ion-buttons>
<ion-title role="heading" [ngClass]="{'title_bb': headerConfig?.showbackButton, 'animate_title': headerConfig?.pageTitle == appName}" aria-level="1"
*ngIf="!(headerConfig?.showbackButton && headerConfig?.actionButtons?.indexOf('search') >=0)">{{ configVariables.siteName }}</ion-title>
*ngIf="!(headerConfig?.showbackButton && (headerConfig?.actionButtons?.indexOf('search') >=0 || headerConfig?.actionButtons?.indexOf('edit') >=0))">{{ configVariables.siteName }}</ion-title>
<ion-title role="heading" aria-level="1" *ngIf="headerConfig?.actionButtons?.indexOf('edit') >=0">{{ headerConfig.pageTitle }}</ion-title>
<ion-input type="search" *ngIf="headerConfig?.showbackButton && headerConfig?.actionButtons?.indexOf('search') >=0" #searchInput [placeholder]="'SEARCH_HINT' | translate"></ion-input>
<ion-buttons slot="end" [hidden]="headerConfig?.showbackButton">
<ion-button (click)="emitEvent($event, 'search')">
Expand Down

0 comments on commit 48cb8f8

Please sign in to comment.