diff --git a/frontend/src/components/filter/Form.vue b/frontend/src/components/filter/Form.vue index e28b9a8..d6394ad 100644 --- a/frontend/src/components/filter/Form.vue +++ b/frontend/src/components/filter/Form.vue @@ -131,7 +131,7 @@ </p> <p class="help"> - Adjacent points will be at least this far apart. + Adjacent points below this distance will be merged </p> </label> diff --git a/frontend/src/mixins/Paginate.vue b/frontend/src/mixins/Paginate.vue index 16f7aa4..3e05089 100644 --- a/frontend/src/mixins/Paginate.vue +++ b/frontend/src/mixins/Paginate.vue @@ -32,8 +32,6 @@ export default { ...this.locationQuery, minId: undefined, maxId: this.oldestPoint.id, - // Previous page results should be retrieved in descending order - order: 'desc', }) }, @@ -46,7 +44,6 @@ export default { ...this.locationQuery, minId: this.newestPoint.id, maxId: undefined, - order: 'asc', }) }, },