Skip to content

Commit

Permalink
Add filter text to closed state on mobile header
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelMoeri committed Nov 4, 2024
1 parent 1183a6e commit 29db26d
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@
>
<mat-expansion-panel-header class="d-flex gap-2 mx-3">
<mat-panel-title>
<span *ngIf="!panelOpenState; else openedPanel">{{
(quarterLabel$ | async) || quarterLabel$.getValue()
}}</span>
<div class="w-100 d-flex justify-content-between">
<span *ngIf="!panelOpenState; else openedPanel">{{
(quarterLabel$ | async) || quarterLabel$.getValue()
}}</span>
<span *ngIf="!panelOpenState">Filter</span>
</div>
<ng-template #openedPanel><p>Filter</p></ng-template>
</mat-panel-title>
</mat-expansion-panel-header>
Expand Down

0 comments on commit 29db26d

Please sign in to comment.