1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02: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 GitHub
parent caa5c73697
commit fcf75d6438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# Changelog
## 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
- [#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)
) : (
<span className="signature-request-message--node-value">
{value}
{`${value}`}
</span>
)}
</div>