1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge branch 'master' into i1912-TokenPrecisionFix

This commit is contained in:
Kevin Serrano 2017-08-18 10:48:55 -07:00 committed by GitHub
commit 7e6c714f78
3 changed files with 8 additions and 2 deletions

View File

@ -4,6 +4,9 @@
- Fix bug where some transaction submission errors would show an empty screen. - Fix bug where some transaction submission errors would show an empty screen.
- Fix bug that could mis-render token balances when very small. - 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 ## 3.9.8 2017-8-16

View File

@ -38,7 +38,7 @@ PendingMsgDetails.prototype.render = function () {
// message data // message data
h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', [ 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('label.font-small', 'MESSAGE'),
h('span.font-small', msgParams.data), h('span.font-small', msgParams.data),
]), ]),

View File

@ -18,6 +18,9 @@ PendingMsg.prototype.render = function () {
h('div', { h('div', {
key: msgData.id, key: msgData.id,
style: {
maxWidth: '350px',
},
}, [ }, [
// header // header
@ -35,7 +38,7 @@ PendingMsg.prototype.render = function () {
}, `Signing this message can have }, `Signing this message can have
dangerous side effects. Only sign messages from dangerous side effects. Only sign messages from
sites you fully trust with your entire account. 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 // message details
h(PendingTxDetails, state), h(PendingTxDetails, state),