mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
adjust ui pagination size
fix https://github.com/seaweedfs/seaweedfs/issues/4258
This commit is contained in:
parent
1f7934a89c
commit
8241c9a829
|
@ -27,7 +27,7 @@ func (fs *FilerServer) listDirectoryHandler(w http.ResponseWriter, r *http.Reque
|
|||
|
||||
limit, limit_err := strconv.Atoi(r.FormValue("limit"))
|
||||
if limit_err != nil {
|
||||
limit = 100
|
||||
limit = fs.option.DirListingLimit
|
||||
}
|
||||
|
||||
lastFileName := r.FormValue("lastFileName")
|
||||
|
|
Loading…
Reference in a new issue