File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
src/GeographicalFeatures/CriticalFacilities/Filters Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,15 @@ import isFunction from 'lodash/isFunction';
88import SearchableSelectInput from '../../../components/SearchableSelectInput' ;
99
1010/* http actions */
11- const { getAgencies, getFeatureTypes, getAdministrativeAreas } = httpActions ;
11+ const {
12+ getAgencies,
13+ getFeatureTypes,
14+ getAdministrativeAreas,
15+ getPartyOwnerships,
16+ } = httpActions ;
1217
1318/* state actions */
14- const { clearFeatureFilters, filterFeatures, getPartyOwnerships } =
15- reduxActions ;
19+ const { clearFeatureFilters, filterFeatures } = reduxActions ;
1620
1721/* ui */
1822const labelCol = {
@@ -161,7 +165,7 @@ const FeatureFiltersForm = ({
161165 onSearch = { ( optns = { } ) => {
162166 return getPartyOwnerships ( optns ) ;
163167 } }
164- optionLabel = { ( ownership ) => get ( ownership , 'name' ) }
168+ optionLabel = { ( ownership ) => get ( ownership , 'strings. name.en ' ) }
165169 optionValue = "_id"
166170 mode = "multiple"
167171 onCache = { ( ownerships ) =>
You can’t perform that action at this time.
0 commit comments