Makes it easy to tell which thing you selected

This commit is contained in:
2024-11-20 11:40:02 -08:00
parent c39b3d936e
commit e8b753a0bd
3 changed files with 23 additions and 16 deletions

View File

@@ -226,7 +226,8 @@
:render (fn [e]
[:ul
(for [a (:plaid-item/accounts e)]
[:li (:plaid-account/name a) " - " (:plaid-account/number a)])])}]}))
[:li [:svg.inline {:data-jdenticon-value (:db/id a) :width "24" :height "24"}] (:plaid-account/name a) " - " (:plaid-account/number a) " - updated "
(atime/unparse-local (:plaid-account/last-synced a) atime/normal-date)])])}]}))
(def page (helper/page-route grid-page))