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

Display boolean values when signing typed data (#10048)

This commit is contained in:
Nicholas Rodrigues Lordello 2020-12-11 18:40:34 +01:00 committed by Mark Stacey
parent c30a42ab8e
commit 288760cffe
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# Changelog # Changelog
## Current Develop Branch ## Current Develop Branch
- [#10048](https://github.com/MetaMask/metamask-extension/pull/10048): Display boolean values when signing typed data
## 8.1.8 Wed Dec 09 2020 ## 8.1.8 Wed Dec 09 2020
- [#9992](https://github.com/MetaMask/metamask-extension/pull/9992): Improve transaction params validation - [#9992](https://github.com/MetaMask/metamask-extension/pull/9992): Improve transaction params validation

View File

@ -29,7 +29,7 @@ export default class SignatureRequestMessage extends PureComponent {
this.renderNode(value) this.renderNode(value)
) : ( ) : (
<span className="signature-request-message--node-value"> <span className="signature-request-message--node-value">
{value} {`${value}`}
</span> </span>
)} )}
</div> </div>