diff --git a/resources/public/index.html b/resources/public/index.html
index 6203ce92..ba745e70 100644
--- a/resources/public/index.html
+++ b/resources/public/index.html
@@ -22,11 +22,8 @@
background-color: #fff;
}
- body {
- animation: scaleUp .7s ease both;
- }
@keyframes scaleUp {
- from { opacity: 0; transform: scale(.95); }
+ from { opacity: 0; transform: translateY(20px); transform-origin: top center; }
}
@keyframes appear {
from { opacity: 0; }
diff --git a/src/cljs/auto_ap/views/components/invoice_table.cljs b/src/cljs/auto_ap/views/components/invoice_table.cljs
index 905f6ef9..9d183119 100644
--- a/src/cljs/auto_ap/views/components/invoice_table.cljs
+++ b/src/cljs/auto_ap/views/components/invoice_table.cljs
@@ -62,7 +62,6 @@
opc (fn [p]
(on-params-change (merge @params p)))]
(fn [{:keys [id invoice-page status on-params-change vendors checked params]}]
- (println "PARAMS" @params)
(let [{:keys [sort-by asc]} @params
{:keys [invoices start end count total]} @invoice-page
visible-checks @(re-frame/subscribe [::visible-checks])
diff --git a/src/cljs/auto_ap/views/components/paginator.cljs b/src/cljs/auto_ap/views/components/paginator.cljs
index 84607b00..cf122e63 100644
--- a/src/cljs/auto_ap/views/components/paginator.cljs
+++ b/src/cljs/auto_ap/views/components/paginator.cljs
@@ -38,13 +38,13 @@
extended-last-page-button (when (not= last-page-button total-pages)
(list
- ^ {:key 1} [:li [:span.pagination-ellipsis "…"]]
- ^ {:key 2} (last all-buttons)))
+ ^ {:key -1} [:li [:span.pagination-ellipsis "…"]]
+ ^ {:key -2} (last all-buttons)))
extended-first-page-button (when (not= first-page-button 0)
(list
- ^{:key 1} (first all-buttons)
- ^{:key 2} [:li [:span.pagination-ellipsis "…"]]))]
+ ^{:key -1} (first all-buttons)
+ ^{:key -2} [:li [:span.pagination-ellipsis "…"]]))]
[:nav.pagination {:role "pagination"}