New: Output Path column in Queue

This commit is contained in:
Qstick 2019-04-28 00:32:38 -04:00
parent e4f1e5d376
commit a3e955443d
5 changed files with 20 additions and 0 deletions

View file

@ -77,6 +77,7 @@ class QueueRow extends Component {
quality,
protocol,
indexer,
outputPath,
downloadClient,
downloadForced,
estimatedCompletionTime,
@ -238,6 +239,14 @@ class QueueRow extends Component {
);
}
if (name === 'outputPath') {
return (
<TableRowCell key={name}>
{outputPath}
</TableRowCell>
);
}
if (name === 'estimatedCompletionTime') {
return (
<TimeleftCell
@ -359,6 +368,7 @@ QueueRow.propTypes = {
quality: PropTypes.object.isRequired,
protocol: PropTypes.string.isRequired,
indexer: PropTypes.string,
outputPath: PropTypes.string,
downloadClient: PropTypes.string,
downloadForced: PropTypes.bool.isRequired,
estimatedCompletionTime: PropTypes.string,