Skip to content

Commit

Permalink
Display boolean values when signing typed data (#10048)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlordell committed Dec 11, 2020
1 parent caa5c73 commit fcf75d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default class SignatureRequestMessage extends PureComponent {
this.renderNode(value)
) : (
<span className="signature-request-message--node-value">
{value}
{`${value}`}
</span>
)}
</div>
Expand Down

0 comments on commit fcf75d6

Please sign in to comment.