New: Add Size column to Activity: Queue

Closes #4527
This commit is contained in:
Nathaniel Peiffer 2021-07-05 03:14:42 +10:00 committed by GitHub
parent bd4624c0ab
commit 43cd103248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View File

@ -19,6 +19,7 @@ import QueueStatusCell from './QueueStatusCell';
import TimeleftCell from './TimeleftCell';
import RemoveQueueItemModal from './RemoveQueueItemModal';
import styles from './QueueRow.css';
import formatBytes from 'Utilities/Number/formatBytes';
class QueueRow extends Component {
@ -280,6 +281,12 @@ class QueueRow extends Component {
);
}
if (name === 'size') {
return (
<TableRowCell key={name}>{formatBytes(size)}</TableRowCell>
);
}
if (name === 'outputPath') {
return (
<TableRowCell key={name}>

View File

@ -122,6 +122,12 @@ export const defaultState = {
isSortable: true,
isVisible: false
},
{
name: 'size',
label: 'Size',
isSortable: true,
isVisibile: false
},
{
name: 'outputPath',
label: 'Output Path',