aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-msg-details.js
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2017-08-18 06:52:39 +0800
committerGitHub <noreply@github.com>2017-08-18 06:52:39 +0800
commit31e5a4f050035e75a0e8c6cc48e5ead4cbccd55e (patch)
tree452ec128ddcae8bc4deafc22e53646946ecdcf56 /ui/app/components/pending-msg-details.js
parent5f9862c89e2357a26384e1b48ab34ba052e967a4 (diff)
parentc90ff2847f119103c58ab713dad8859cce0e92e6 (diff)
downloadtangerine-wallet-browser-31e5a4f050035e75a0e8c6cc48e5ead4cbccd55e.tar.gz
tangerine-wallet-browser-31e5a4f050035e75a0e8c6cc48e5ead4cbccd55e.tar.zst
tangerine-wallet-browser-31e5a4f050035e75a0e8c6cc48e5ead4cbccd55e.zip
Merge pull request #1942 from MetaMask/i1903-EthSignFormat
Fix "Eth Sign" format
Diffstat (limited to 'ui/app/components/pending-msg-details.js')
-rw-r--r--ui/app/components/pending-msg-details.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/pending-msg-details.js b/ui/app/components/pending-msg-details.js
index 16308d121..718a22de0 100644
--- a/ui/app/components/pending-msg-details.js
+++ b/ui/app/components/pending-msg-details.js
@@ -38,7 +38,7 @@ PendingMsgDetails.prototype.render = function () {
// message data
h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', [
- h('.flex-row.flex-space-between', [
+ h('.flex-column.flex-space-between', [
h('label.font-small', 'MESSAGE'),
h('span.font-small', msgParams.data),
]),