Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #871 from LiskHQ/870-fix-receive-address-overflow
Browse files Browse the repository at this point in the history
Prevent address overflow in receiveDialog - Closes #870
  • Loading branch information
slaweet authored Oct 16, 2017
2 parents e43bcfe + c3574b1 commit bc36bc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/receiveDialog/receiveDialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
border-radius: 2px;
color: #000;
padding: 16px;
width: 300px;
width: 330px;
}
2 changes: 1 addition & 1 deletion src/components/receiveDialog/receiveDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ReceiveDialog extends React.Component {
<h3>{this.props.t('Address')}</h3>
<h1 className={`receive-modal-address ${style.address}`}>{props.address}</h1>
<br />
<QRCode value={props.address} size={300}/>
<QRCode value={props.address} size={330}/>
<br /><br />
</span>
</div>
Expand Down

0 comments on commit bc36bc4

Please sign in to comment.