|
|
|
@ -76,6 +76,7 @@ class QueueRow extends Component {
|
|
|
|
|
quality,
|
|
|
|
|
protocol,
|
|
|
|
|
indexer,
|
|
|
|
|
outputPath,
|
|
|
|
|
downloadClient,
|
|
|
|
|
estimatedCompletionTime,
|
|
|
|
|
timeleft,
|
|
|
|
@ -260,6 +261,14 @@ class QueueRow extends Component {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name === 'outputPath') {
|
|
|
|
|
return (
|
|
|
|
|
<TableRowCell key={name}>
|
|
|
|
|
{outputPath}
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name === 'estimatedCompletionTime') {
|
|
|
|
|
return (
|
|
|
|
|
<TimeleftCell
|
|
|
|
@ -364,6 +373,7 @@ QueueRow.propTypes = {
|
|
|
|
|
quality: PropTypes.object.isRequired,
|
|
|
|
|
protocol: PropTypes.string.isRequired,
|
|
|
|
|
indexer: PropTypes.string,
|
|
|
|
|
outputPath: PropTypes.string,
|
|
|
|
|
downloadClient: PropTypes.string,
|
|
|
|
|
estimatedCompletionTime: PropTypes.string,
|
|
|
|
|
timeleft: PropTypes.string,
|
|
|
|
|