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