Skip to content

Commit

Permalink
make access request open new tab (#5859)
Browse files Browse the repository at this point in the history
* make access request open new tab

* trigger build
  • Loading branch information
timifasubaa committed Sep 11, 2018
1 parent 6df720d commit 01212c3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion superset/assets/src/components/StackTraceMessage.jsx
Expand Up @@ -38,7 +38,13 @@ class StackTraceMessage extends React.PureComponent {
>
{this.props.message}
{this.hasLink() &&
<a href={this.props.queryResponse.link}> (Request Access) </a>
<a
href={this.props.queryResponse.link}
target="_blank"
rel="noopener noreferrer"
>
(Request Access)
</a>
}
</Alert>
{this.hasTrace() &&
Expand Down

0 comments on commit 01212c3

Please sign in to comment.