diff --git a/src/views/feature/Feature_list.vue b/src/views/feature/Feature_list.vue index 7d8d20d05794a6c88f07e8b509f900c7ad7a3c23..1bb24d0fbc731c81422a92f8ed244ce03e499798 100644 --- a/src/views/feature/Feature_list.vue +++ b/src/views/feature/Feature_list.vue @@ -537,7 +537,7 @@ export default { } if (typeFilter) { - let typeParams = `&feature_type__slug=${typeFilter}`; + let typeParams = `&feature_type_slug=${typeFilter}`; params += typeParams; } if (statusFilter) { @@ -564,7 +564,7 @@ export default { }, fetchPagedFeatures(params) { - this.onFilterChange(); //* temporary, use paginated event to watch change in filters, to modify geojson on map + // this.onFilterChange(); //* temporary, use paginated event to watch change in filters, to modify geojson on map //* replace function calls in watcher and on input let url = `${this.API_BASE_URL}projects/${this.$route.params.slug}/feature-paginated/?output=geojson&limit=${this.pagination.pagesize}&offset=${this.pagination.start}`;