You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/shared/search/search-filters/search-filter/search-authority-filter/search-authority-filter.component.html
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
<div>
2
2
<divclass="filters py-2">
3
-
<ds-search-facet-selected-option*ngFor="let value of (selectedValues$ | async)" [selectedValue]="value" [filterConfig]="filterConfig" [selectedValues$]="selectedValues$" [inPlaceSearch]="inPlaceSearch"></ds-search-facet-selected-option>
4
-
<ng-container*ngFor="let page of (filterValues$ | async)?.payload">
3
+
<ds-search-facet-selected-option*ngFor="let value of (selectedAppliedFilters$ | async)" [selectedValue]="value" [filterConfig]="filterConfig" [inPlaceSearch]="inPlaceSearch"></ds-search-facet-selected-option>
4
+
<ng-container*ngFor="let page of (facetValues$ | async)">
5
5
<div[@facetLoad]="animationState">
6
-
<ds-search-facet-option*ngFor="let value of page.page; trackBy: trackUpdate" [filterConfig]="filterConfig" [filterValue]="value" [selectedValues$]="selectedValues$" [inPlaceSearch]="inPlaceSearch"></ds-search-facet-option>
6
+
<ds-search-facet-option*ngFor="let value of page.page; trackBy: trackUpdate" [filterConfig]="filterConfig" [filterValue]="value" [inPlaceSearch]="inPlaceSearch"></ds-search-facet-option>
Copy file name to clipboardExpand all lines: src/app/shared/search/search-filters/search-filter/search-boolean-filter/search-boolean-filter.component.html
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
<div>
2
2
<divclass="filters py-2">
3
-
<ds-search-facet-selected-option*ngFor="let value of (selectedValues$ | async)" [selectedValue]="value" [filterConfig]="filterConfig" [selectedValues$]="selectedValues$" [inPlaceSearch]="inPlaceSearch"></ds-search-facet-selected-option>
4
-
<ng-container*ngFor="let page of (filterValues$ | async)?.payload">
3
+
<ds-search-facet-selected-option*ngFor="let value of (selectedAppliedFilters$ | async)" [selectedValue]="value" [filterConfig]="filterConfig" [inPlaceSearch]="inPlaceSearch"></ds-search-facet-selected-option>
4
+
<ng-container*ngFor="let page of (facetValues$ | async)">
5
5
<div[@facetLoad]="animationState">
6
-
<ds-search-facet-option*ngFor="let value of page.page; trackBy: trackUpdate" [filterConfig]="filterConfig" [filterValue]="value" [selectedValues$]="selectedValues$" [inPlaceSearch]="inPlaceSearch"></ds-search-facet-option>
6
+
<ds-search-facet-option*ngFor="let value of page.page; trackBy: trackUpdate" [filterConfig]="filterConfig" [filterValue]="value" [inPlaceSearch]="inPlaceSearch"></ds-search-facet-option>
0 commit comments