diff options
author | Joris | 2015-09-05 11:10:34 +0200 |
---|---|---|
committer | Joris | 2015-09-05 11:10:34 +0200 |
commit | 139d4a103a6a48880e5f12a796033956f223563c (patch) | |
tree | a08e0071d24dc67e01a1def1cb18240d45ae327a /src/client/Model | |
parent | a26b34e52edca1c783d929f25157fd4a04432344 (diff) |
Limit showed pages and add first, previous, next and last page links
Diffstat (limited to 'src/client/Model')
-rw-r--r-- | src/client/Model/Payment.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/Model/Payment.elm b/src/client/Model/Payment.elm index 88063b4..8a51c66 100644 --- a/src/client/Model/Payment.elm +++ b/src/client/Model/Payment.elm @@ -13,7 +13,7 @@ import Json.Decode as Json exposing ((:=)) import Dict exposing (..) perPage : Int -perPage = 10 +perPage = 8 type alias Payments = Dict PaymentId Payment |