Fixed #1306 - JumpToPageDropdown are numbered from 0 instead of 1

pull/1317/head
Tuğçe Küçükoğlu 2021-05-31 15:36:23 +03:00
parent fbb40520d6
commit cbcc74b71d
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export default {
pageOptions() {
let opts = [];
for(let i= 0; i < this.pageCount; i++) {
opts.push({label: String(i), value: i})
opts.push({label: String(i+1), value: i})
}
return opts;
}