Skip to content

Commit 252a2a6

Browse files
committed
Correct usage of offset start in data query
1 parent 2c456c0 commit 252a2a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/MapData.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ export default class MapData extends Vue {
475475
} else {
476476
url += "&";
477477
}
478-
url += "offset=" + this.$data.query.offset;
478+
url += "start=" + this.$data.query.offset;
479479
first = true;
480480
}
481481
if (this.$data.selectedSortField !== null) {

0 commit comments

Comments
 (0)