Skip to content

Commit

Permalink
Merge pull request #1976 from CSCfi/CSCTTV-4123
Browse files Browse the repository at this point in the history
fix year of grant filter bug
  • Loading branch information
konolak authored Feb 12, 2025
2 parents 5aea312 + 91d5e30 commit fc39f50
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ <h3 class="header" *ngIf="!mobile && !showButton">
>
<!-- Options -->
<mat-list-option disableRipple
checkboxPosition="before"
togglePosition="before"
*ngFor="
let item of responseData.aggregations[
filter.field
Expand All @@ -354,7 +354,7 @@ <h3 class="header" *ngIf="!mobile && !showButton">
[value]="item.key"
[selected]="
activeFilters[filter.field] &&
activeFilters[filter.field].indexOf(item.key) > -1
activeFilters[filter.field].indexOf(item.key.toString()) > -1
"
>
<!--<div class="row d-flex justify-content-around">-->
Expand Down

0 comments on commit fc39f50

Please sign in to comment.