Skip to content

Commit

Permalink
Ensures the order of headings is semantically correct
Browse files Browse the repository at this point in the history
  • Loading branch information
GauravD2t committed Feb 22, 2024
1 parent 6576739 commit a8eb9fc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<h3>{{filterLabel+'.filters.head' | translate}}</h3>
<h3 *ngIf="inPlaceSearch">{{filterLabel+'.filters.head' | translate}}</h3>
<h2 *ngIf="!inPlaceSearch">{{filterLabel+'.filters.head' | translate}}</h2>
<div *ngIf="(filters | async)?.hasSucceeded">
<div *ngFor="let filter of (filters | async)?.payload; trackBy: trackUpdate">
<ds-search-filter [scope]="currentScope" [filter]="filter" [inPlaceSearch]="inPlaceSearch" [refreshFilters]="refreshFilters"></ds-search-filter>
Expand Down

0 comments on commit a8eb9fc

Please sign in to comment.