Misc Updates

This commit is contained in:
Qstick
2021-01-10 02:50:10 -05:00
parent 88d1a3db6f
commit 66f726bf6f
8 changed files with 23 additions and 9 deletions

View File

@@ -30,6 +30,7 @@ class SearchIndexRow extends Component {
publishDate,
title,
infoUrl,
downloadUrl,
indexer,
size,
files,
@@ -214,8 +215,9 @@ class SearchIndexRow extends Component {
className={styles[column.name]}
>
<IconButton
name={icons.EXTERNAL_LINK}
title={'Website'}
name={icons.DOWNLOAD}
title={'Grab'}
to={downloadUrl}
/>
</VirtualTableRowCell>
);
@@ -239,6 +241,7 @@ SearchIndexRow.propTypes = {
publishDate: PropTypes.string.isRequired,
title: PropTypes.string.isRequired,
infoUrl: PropTypes.string.isRequired,
downloadUrl: PropTypes.string.isRequired,
indexerId: PropTypes.number.isRequired,
indexer: PropTypes.string.isRequired,
size: PropTypes.number.isRequired,