Skip to content

Commit

Permalink
UHF-X: fix aggregated values for search dropdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremysteerio committed Jan 9, 2023
1 parent 58d3076 commit f322b76
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.

This file was deleted.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions public/modules/custom/helfi_rekry_job_search/assets/main.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ export const publicationQuery = {
},
{
bool: {
must: [
{
term: {
status: true,
},
},
],
must_not: [
{
exists: {
Expand Down Expand Up @@ -77,10 +84,9 @@ export const AGGREGATIONS = {
query: {
bool: {
...publicationQuery.bool,
filter: [nodeFilter],
filter: [languageFilter, nodeFilter],
},
},
size: 10000,
};

// Get all employment filter options
Expand Down

0 comments on commit f322b76

Please sign in to comment.