Adding info.

This commit is contained in:
BC
2018-10-25 20:10:13 -07:00
parent d1db270f4e
commit 2b3898f444

View File

@@ -2,6 +2,7 @@
(:require-macros [cljs.core.async.macros :refer [go]])
(:require [re-frame.core :as re-frame]
[reagent.core :as reagent]
[clojure.string :as str]
[auto-ap.subs :as subs]
[auto-ap.events.admin.companies :as events]
[auto-ap.entities.companies :as entity]
@@ -106,7 +107,8 @@
[:tr
[:th "Account Name"]
[:th "Account Number"]
[:th "Yodlee Account Number"]]]
[:th "Yodlee Account Number"]
[:th "Yodlee Status"]]]
(if @(re-frame/subscribe [::accounts-loading?])
[:tr [:td {:col-span "3"} "Loading..."]
]
@@ -114,7 +116,9 @@
[:tr
[:td (:accountName account)]
[:td (:accountNumber account)]
[:td (:id account)]]))]])
[:td (:id account)]
[:td (str/join ", " (map :additionalStatus (:dataset account)))]
]))]])
(defn admin-yodlee-page []