Skip to content

Commit

Permalink
fix(platform): use correct markup for the list in Filter dialog for P…
Browse files Browse the repository at this point in the history
…latform table (#12020)
  • Loading branch information
InnaAtanasova committed Jun 25, 2024
1 parent 0962094 commit e21be52
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ <h4 fd-title [headerSize]="4">{{ 'platformTable.filterDialogFilterTitle' | fdTra
</ng-template>

<ng-template #bodyTemplate>
<ul fd-list [navigationIndicator]="true">
<ul fd-list>
<li fd-list-group-header>{{ 'platformTable.filterDialogFilterBy' | fdTranslate }}</li>

@for (filter of filters; track filter) {
<li fd-list-item>
<a fd-list-link (click)="selectFilter.emit(filter)">
<span fd-list-title>{{ filter.label }}</span>
</a>
<li fd-list-item [interactive]="true" (click)="selectFilter.emit(filter)">
<span fd-list-title>{{ filter.label }}</span>
</li>
}
</ul>
Expand Down

0 comments on commit e21be52

Please sign in to comment.