Skip to content

Commit a9e823c

Browse files
committed
4 Provincies missing in dropdown
1 parent 62defe1 commit a9e823c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

front/src/Components/OrganizationSelector.tsx

+7-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,13 @@ const query = {
1616
match_all: {},
1717
},
1818
filter: {
19-
terms: {
20-
classification: ["municipality", "province", "water"],
19+
bool: {
20+
should: [
21+
{ match: { classification: "municipality" } },
22+
{ match: { classification: "province" } },
23+
{ match: { classification: "water" } },
24+
],
25+
minimum_should_match: 1,
2126
},
2227
},
2328
},

0 commit comments

Comments
 (0)