Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/4d3a1efca31b1727afd3fbd8ba4e0c8cdc82a292
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
15 additions and
0 deletions
@ -1,5 +1,6 @@
import PropTypes from 'prop-types' ;
import React , { Component } from 'react' ;
import formatBytes from 'Utilities/Number/formatBytes' ;
import { icons , kinds } from 'Helpers/Props' ;
import IconButton from 'Components/Link/IconButton' ;
import SpinnerIconButton from 'Components/Link/SpinnerIconButton' ;
@ -204,6 +205,14 @@ 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 === 'title' ) {
return (
< TableRowCell key = { name } >
@ -104,6 +104,12 @@ export const defaultState = {
isSortable : true ,
isVisible : false
} ,
{
name : 'size' ,
label : 'Size' ,
isSortable : true ,
isVisible : false
} ,
{
name : 'title' ,
label : 'Release Title' ,