Skip to content

Commit

Permalink
fix funding call grant year filter bug
Browse files Browse the repository at this point in the history
  • Loading branch information
konolak committed Feb 12, 2025
1 parent 5aea312 commit 7506f9e
Show file tree
Hide file tree
Showing 2 changed files with 20 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
18 changes: 18 additions & 0 deletions src/environments/environment.development.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
export const environment = {
production: false,
development: true,
SSR_API_URL_DEVELOPMENT: 'https://researchfi-api-devel.2.rahtiapp.fi',
SSR_API_URL: 'https://researchfi-api-production.2.rahtiapp.fi',

SSR_CMS_URL: 'https://cms-nginx-devel-researchfi.2.rahtiapp.fi',
SSR_PROFILE_API_URL: 'https://mydata-api-devel.2.rahtiapp.fi/api',
SSR_BUILD_INFO: 'devel',
SSR_MATOMO_SITE_ID: '4',

SMTP_ENABLED: true,
SMTP_RAHTI_SKIP_AUTHENTICATION: true,
SMTP_HOST: 'smtp.pouta.csc.fi',
SMTP_USER: '[email protected]',
SMTP_PASSWORD: '6AtsqqRK3tkJJKYqqQ',
NO_SMTP_HOST: 'smtp.ethereal.email'
};

0 comments on commit 7506f9e

Please sign in to comment.