|
|
@ -15,6 +15,7 @@ import TableRow from 'Components/Table/TableRow';
|
|
|
|
import Popover from 'Components/Tooltip/Popover';
|
|
|
|
import Popover from 'Components/Tooltip/Popover';
|
|
|
|
import { icons, kinds, tooltipPositions } from 'Helpers/Props';
|
|
|
|
import { icons, kinds, tooltipPositions } from 'Helpers/Props';
|
|
|
|
import InteractiveImportModal from 'InteractiveImport/InteractiveImportModal';
|
|
|
|
import InteractiveImportModal from 'InteractiveImport/InteractiveImportModal';
|
|
|
|
|
|
|
|
import formatBytes from 'Utilities/Number/formatBytes';
|
|
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
import QueueStatusCell from './QueueStatusCell';
|
|
|
|
import QueueStatusCell from './QueueStatusCell';
|
|
|
|
import RemoveQueueItemModal from './RemoveQueueItemModal';
|
|
|
|
import RemoveQueueItemModal from './RemoveQueueItemModal';
|
|
|
@ -230,6 +231,12 @@ class QueueRow extends Component {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (name === 'size') {
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
|
|
<TableRowCell key={name}>{formatBytes(size)}</TableRowCell>
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (name === 'outputPath') {
|
|
|
|
if (name === 'outputPath') {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<TableRowCell key={name}>
|
|
|
|
<TableRowCell key={name}>
|
|
|
|