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

Commit

Permalink
Link doesn't work with offsite links. fixes #500
Browse files Browse the repository at this point in the history
  • Loading branch information
larrysalibra committed May 23, 2017
1 parent aeec1ee commit c0e8a17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/js/components/ActionItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ActionItem extends Component {
<div className="action-item">
<div>{this.props.action}</div>
<div><small>{this.props.detail}</small></div>
<Link className="tooltip-link" to={this.props.destinationUrl}> › Go to {this.props.destinationName}</Link>
<a className="tooltip-link" href={this.props.destinationUrl}> › Go to {this.props.destinationName}</a>
</div>
}
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/js/components/StatusBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class StatusBar extends Component {
/>
<ActionItem
action="Sign in to your first Blockstack app"
destinationUrl="/"
destinationUrl="https://helloblockstack.com"
destinationName="Apps"
completed={this.signedIntoFirstApp()}
/>
Expand Down

0 comments on commit c0e8a17

Please sign in to comment.