Skip to content

Commit

Permalink
Correct link on token issue
Browse files Browse the repository at this point in the history
  • Loading branch information
catena2w committed Jun 8, 2020
1 parent f2c7129 commit 445e314
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"default_popup": "index.html",
"default_title": "Coinbarn"
},
"content_security_policy": "script-src 'self' 'sha256-10UMLSeYCFiPsZY4PWL12XSgjx7j1LCAYLrgHvOGw9Q='; object-src 'self'",
"content_security_policy": "script-src 'self' 'sha256-d0cwojawEwxUv6GLp0XLkpj9zDl21oMg8VVmLvth/Es='; object-src 'self'",
"icons": {
"16": "img/logos/fav_clear.png",
"32": "img/logos/fav_clear@2x.png",
Expand Down
2 changes: 1 addition & 1 deletion src/ui/AboutWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default class AboutWindow extends React.Component<IAboutWindowProps> {
<div className='greeting'>About</div>
<h1>CoinBarn Version</h1>
{/*TODO: get version automatically*/}
<h1>0.1.1</h1>
<h1>0.1.2</h1>
<h1 className='documents'>Documents</h1>
<ul>
<li><h3><a target="_blank" rel="noopener noreferrer" href={Constants.privacyURL}>Privacy policy</a></h3></li>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/elements/IssueTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default class IssueTab extends React.Component<IIssueTabProps, IIssueTabS
const client = new CoinbarnClient();
const result = await client.issue(this.props.account, name, amount, decimals, description);
if (result.data.id) {
const id: string = result.data.id.substring(1, 65);
const id: string = result.data.id;
const explorerHref = `${Constants.explorerURL}/en/transactions/${id}`;
this.props.setPopup(
{
Expand Down
2 changes: 1 addition & 1 deletion src/ui/elements/SendTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default class SendTab extends React.Component<ISendTabProps, ISendTabStat
const result = await client.transfer(this.props.account, recipient, amount, tokenId);
if (result.data.id) {
const tokenName = this.currentTokenName();
const id: string = result.data.id.substring(0, 65);
const id: string = result.data.id;
const explorerHref = `${Constants.explorerURL}/en/transactions/${id}`;
this.props.setPopup(
{
Expand Down

0 comments on commit 445e314

Please sign in to comment.