Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/95691c74769ba8fa0021a4c835b44646d5d32ffe
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
25 additions and
1 deletions
@ -1,10 +1,11 @@
import PropTypes from 'prop-types' ;
import React , { Component } from 'react' ;
import Label from 'Components/Label' ;
import IconButton from 'Components/Link/IconButton' ;
import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellConnector' ;
import TableRowCell from 'Components/Table/Cells/TableRowCell' ;
import TableRow from 'Components/Table/TableRow' ;
import { icons } from 'Helpers/Props' ;
import { icons , kinds } from 'Helpers/Props' ;
import CapabilitiesLabel from 'Indexer/Index/Table/CapabilitiesLabel' ;
import translate from 'Utilities/String/translate' ;
import HistoryDetailsModal from './Details/HistoryDetailsModal' ;
@ -225,6 +226,23 @@ class HistoryRow extends Component {
) ;
}
if ( name === 'queryType' ) {
return (
< TableRowCell
key = { name }
className = { styles . query }
>
{
data . queryType ?
< Label kind = { kinds . INFO } >
{ data . queryType }
< / L a b e l > :
null
}
< / T a b l e R o w C e l l >
) ;
}
if ( name === 'categories' ) {
return (
< TableRowCell
@ -58,6 +58,12 @@ export const defaultState = {
isSortable : false ,
isVisible : false
} ,
{
name : 'queryType' ,
label : translate ( 'QueryType' ) ,
isSortable : false ,
isVisible : false
} ,
{
name : 'categories' ,
label : translate ( 'Categories' ) ,