Browse Source

Fix list_options GetStartEnd (#16303) (#16305)

end is start + pageSize and not start + page

Co-authored-by: sebastian-sauer <sauer.sebastian@gmail.com>
tags/v1.14.4
6543 4 years ago committed by GitHub
parent
commit
50084daa4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      models/list_options.go

2
models/list_options.go

@ -41,7 +41,7 @@ func (opts *ListOptions) setEnginePagination(e Engine) Engine {
func (opts *ListOptions) GetStartEnd() (start, end int) {
opts.setDefaultValues()
start = (opts.Page - 1) * opts.PageSize
end = start + opts.Page
end = start + opts.PageSize
return
}

Loading…
Cancel
Save