diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2017-08-19 01:48:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-19 01:48:55 +0800 |
commit | 7e6c714f781ace465d9cec0e0bd7bce7c256d43b (patch) | |
tree | 76a875e49eb07155931c1bef22c534398063f53b | |
parent | d7a34514b07a8028b72ae189862d1b3210e67021 (diff) | |
parent | 31e5a4f050035e75a0e8c6cc48e5ead4cbccd55e (diff) | |
download | tangerine-wallet-browser-7e6c714f781ace465d9cec0e0bd7bce7c256d43b.tar tangerine-wallet-browser-7e6c714f781ace465d9cec0e0bd7bce7c256d43b.tar.gz tangerine-wallet-browser-7e6c714f781ace465d9cec0e0bd7bce7c256d43b.tar.bz2 tangerine-wallet-browser-7e6c714f781ace465d9cec0e0bd7bce7c256d43b.tar.lz tangerine-wallet-browser-7e6c714f781ace465d9cec0e0bd7bce7c256d43b.tar.xz tangerine-wallet-browser-7e6c714f781ace465d9cec0e0bd7bce7c256d43b.tar.zst tangerine-wallet-browser-7e6c714f781ace465d9cec0e0bd7bce7c256d43b.zip |
Merge branch 'master' into i1912-TokenPrecisionFix
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | ui/app/components/pending-msg-details.js | 2 | ||||
-rw-r--r-- | ui/app/components/pending-msg.js | 5 |
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cfe68f7f..3b26afd47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ - Fix bug where some transaction submission errors would show an empty screen. - Fix bug that could mis-render token balances when very small. +- Fix formatting of eth_sign "Sign Message" view. +- Add deprecation warning to eth_sign "Sign Message" view. + ## 3.9.8 2017-8-16 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), ]), diff --git a/ui/app/components/pending-msg.js b/ui/app/components/pending-msg.js index b2cac164a..b7133cda8 100644 --- a/ui/app/components/pending-msg.js +++ b/ui/app/components/pending-msg.js @@ -18,6 +18,9 @@ PendingMsg.prototype.render = function () { h('div', { key: msgData.id, + style: { + maxWidth: '350px', + }, }, [ // header @@ -35,7 +38,7 @@ PendingMsg.prototype.render = function () { }, `Signing this message can have dangerous side effects. Only sign messages from sites you fully trust with your entire account. - This will be fixed in a future version.`), + This dangerous method will be removed in a future version.`), // message details h(PendingTxDetails, state), |