Skip to content

Commit 3ee9899

Browse files
committed
Fix asset link.
1 parent aac60ab commit 3ee9899

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/modules/IDE/components/AssetList.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ AssetMenu.propTypes = {
4646
const AssetListRowBase = ({ asset, username }) => (
4747
<tr className="asset-table__row" key={asset.key}>
4848
<th scope="row">
49-
<Link to={asset.url} target="_blank">
49+
<a href={asset.url} target="_blank" rel="noopener noreferrer">
5050
{asset.name}
51-
</Link>
51+
</a>
5252
</th>
5353
<td>{prettyBytes(asset.size)}</td>
5454
<td>

0 commit comments

Comments
 (0)