Supports pagination selection

This commit is contained in:
2023-11-01 08:50:30 -07:00
parent 8c0307ff73
commit 31dc514cdd
4 changed files with 41 additions and 14 deletions

View File

@@ -73,7 +73,7 @@
(defn table* [grid-spec user {{:keys [start per-page flash-id sort]} :parsed-query-params :as request}]
(let [start (or start 0)
per-page (or per-page 30)
per-page (or per-page 25)
[entities total] ((:fetch-page grid-spec)
request)]