Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/c8095faa1f7c62406191b54e800a7338a78d7f5e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
20 additions and
6 deletions
@ -1,6 +1,7 @@
import PropTypes from 'prop-types' ;
import React , { Component } from 'react' ;
import titleCase from 'Utilities/String/titleCase' ;
import formatBytes from 'Utilities/Number/formatBytes' ;
import { icons } from 'Helpers/Props' ;
import HeartRating from 'Components/HeartRating' ;
import IconButton from 'Components/Link/IconButton' ;
@ -71,6 +72,7 @@ class MovieIndexRow extends Component {
physicalRelease ,
minimumAvailability ,
path ,
sizeOnDisk ,
genres ,
ratings ,
certification ,
@ -220,6 +222,17 @@ class MovieIndexRow extends Component {
) ;
}
if ( name === 'sizeOnDisk' ) {
return (
< VirtualTableRowCell
key = { name }
className = { styles [ name ] }
>
{ formatBytes ( sizeOnDisk ) }
< / V i r t u a l T a b l e R o w C e l l >
) ;
}
if ( name === 'genres' ) {
const joinedGenres = genres . join ( ', ' ) ;
@ -352,6 +365,7 @@ MovieIndexRow.propTypes = {
physicalRelease : PropTypes . string ,
minimumAvailability : PropTypes . string . isRequired ,
path : PropTypes . string . isRequired ,
sizeOnDisk : PropTypes . number . isRequired ,
genres : PropTypes . arrayOf ( PropTypes . string ) . isRequired ,
ratings : PropTypes . object . isRequired ,
certification : PropTypes . string ,
@ -120,6 +120,12 @@ export const defaultState = {
isSortable : true ,
isVisible : false
} ,
{
name : 'sizeOnDisk' ,
label : 'Size on Disk' ,
isSortable : true ,
isVisible : false
} ,
{
name : 'genres' ,
label : 'Genres' ,
@ -167,12 +173,6 @@ export const defaultState = {
return studio ? studio . toLowerCase ( ) : '' ;
} ,
sizeOnDisk : function ( item ) {
const { statistics = { } } = item ;
return statistics . sizeOnDisk ;
} ,
ratings : function ( item ) {
const { ratings = { } } = item ;