aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/pending-msg.js7
-rw-r--r--ui/app/components/pending-tx.js7
2 files changed, 14 insertions, 0 deletions
diff --git a/ui/app/components/pending-msg.js b/ui/app/components/pending-msg.js
index cb6df2a3d..b0a6bb87d 100644
--- a/ui/app/components/pending-msg.js
+++ b/ui/app/components/pending-msg.js
@@ -30,6 +30,13 @@ PendingMsg.prototype.render = function() {
key: msgData.id,
}, [
+ h('h3', {
+ style: {
+ fontWeight: 'bold',
+ textAlign: 'center',
+ }
+ }, 'Sign Message'),
+
// account that will sign
h(AccountPanel, {
showFullAddress: true,
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index 2519998a5..2bfb89705 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -30,6 +30,13 @@ PendingTx.prototype.render = function() {
key: txData.id,
}, [
+ h('h3', {
+ style: {
+ fontWeight: 'bold',
+ textAlign: 'center',
+ }
+ }, 'Submit Transaction'),
+
// account that will sign
h(AccountPanel, {
showFullAddress: true,