aboutsummaryrefslogtreecommitdiff
path: root/src/pages/popup.tsx
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-04-28 23:28:27 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-04-28 23:28:27 +0200
commitd6bf24902a34f2094363121c8d9f4d54db6f7b6c (patch)
tree0794956ebdf91a2fbea16baa0e8aa559f45c5d06 /src/pages/popup.tsx
parentce97b1076b7e4a53b84d3fd34bf2047580ddeb22 (diff)
implement new reserve creation dialog and auditor management
Diffstat (limited to 'src/pages/popup.tsx')
-rw-r--r--src/pages/popup.tsx22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/pages/popup.tsx b/src/pages/popup.tsx
index c8d52b45c..7f179366a 100644
--- a/src/pages/popup.tsx
+++ b/src/pages/popup.tsx
@@ -309,18 +309,16 @@ class WalletBalanceView extends React.Component<any, any> {
</p>
);
});
- if (listing.length > 0) {
- let link = chrome.extension.getURL("/src/pages/auditors.html");
- let linkElem = <a href={link} target="_blank">auditors</a>;
- return (
- <div>
- {listing}
- {linkElem}
- </div>
- );
- }
-
- return this.renderEmpty();
+ let link = chrome.extension.getURL("/src/pages/auditors.html");
+ let linkElem = <a className="actionLink" href={link} target="_blank">Trusted Auditors and Exchanges</a>;
+ return (
+ <div>
+ <h2>Available Balance</h2>
+ {listing.length > 0 ? listing : this.renderEmpty()}
+ <h2>Settings</h2>
+ {linkElem}
+ </div>
+ );
}
}