New: Download Clients for Manual Grabs

This commit is contained in:
Qstick
2021-03-18 00:07:25 -04:00
parent fd27018caa
commit 881313ef2b
209 changed files with 12229 additions and 127 deletions

View File

@@ -48,7 +48,8 @@ class SearchIndexTable extends Component {
items,
columns,
longDateFormat,
timeFormat
timeFormat,
onGrabPress
} = this.props;
const release = items[rowIndex];
@@ -65,6 +66,7 @@ class SearchIndexTable extends Component {
guid={release.guid}
longDateFormat={longDateFormat}
timeFormat={timeFormat}
onGrabPress={onGrabPress}
/>
</VirtualTableRow>
);
@@ -118,7 +120,8 @@ SearchIndexTable.propTypes = {
scroller: PropTypes.instanceOf(Element).isRequired,
longDateFormat: PropTypes.string.isRequired,
timeFormat: PropTypes.string.isRequired,
onSortPress: PropTypes.func.isRequired
onSortPress: PropTypes.func.isRequired,
onGrabPress: PropTypes.func.isRequired
};
export default SearchIndexTable;