Skip to content

Commit

Permalink
Fix asset link.
Browse files Browse the repository at this point in the history
  • Loading branch information
lindapaiste committed Nov 24, 2023
1 parent aac60ab commit 3ee9899
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/modules/IDE/components/AssetList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ AssetMenu.propTypes = {
const AssetListRowBase = ({ asset, username }) => (
<tr className="asset-table__row" key={asset.key}>
<th scope="row">
<Link to={asset.url} target="_blank">
<a href={asset.url} target="_blank" rel="noopener noreferrer">
{asset.name}
</Link>
</a>
</th>
<td>{prettyBytes(asset.size)}</td>
<td>
Expand Down

0 comments on commit 3ee9899

Please sign in to comment.