fix: open project links in new tab
This commit is contained in:
committed by
Stuart Taylor
parent
c9155092b0
commit
d9e2376d4a
@ -90,7 +90,11 @@ class JSAlgoAndDSForm extends PureComponent {
|
|||||||
{ this.state[challenge] ? 'Hide' : 'Show' } Solution
|
{ this.state[challenge] ? 'Hide' : 'Show' } Solution
|
||||||
</Button>
|
</Button>
|
||||||
</div> :
|
</div> :
|
||||||
<Link to={`${jsProjectPath}${kebabCase(challenge)}`}>
|
<Link
|
||||||
|
rel='noopener noreferrer'
|
||||||
|
target='_blank'
|
||||||
|
to={`${jsProjectPath}${kebabCase(challenge)}`}
|
||||||
|
>
|
||||||
<Button
|
<Button
|
||||||
bsSize='lg'
|
bsSize='lg'
|
||||||
bsStyle='primary'
|
bsStyle='primary'
|
||||||
|
Reference in New Issue
Block a user