Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/43cd1032487743c72fe0503a293343b8811def4d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
13 additions and
0 deletions
@ -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 ) } < / T a b l e R o w C e l l >
) ;
}
if ( name === 'outputPath' ) {
return (
< TableRowCell key = { name } >
@ -122,6 +122,12 @@ export const defaultState = {
isSortable : true ,
isVisible : false
} ,
{
name : 'size' ,
label : 'Size' ,
isSortable : true ,
isVisibile : false
} ,
{
name : 'outputPath' ,
label : 'Output Path' ,