Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/ae267f672917d90f39788b0d8711c5aa4dd9030f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
20 additions and
25 deletions
@ -1,6 +1,7 @@
import PropTypes from 'prop-types' ;
import React from 'react' ;
import Modal from 'Components/Modal/Modal' ;
import { sizes } from 'Helpers/Props' ;
import ArtistHistoryModalContentConnector from './ArtistHistoryModalContentConnector' ;
function ArtistHistoryModal ( props ) {
@ -13,6 +14,7 @@ function ArtistHistoryModal(props) {
return (
< Modal
isOpen = { isOpen }
size = { sizes . EXTRA _LARGE }
onModalClose = { onModalClose }
>
< ArtistHistoryModalContentConnector
@ -35,13 +35,9 @@ const columns = [
isVisible : true
} ,
{
name : 'date' ,
label : ( ) => translate ( 'Date' ) ,
isVisible : true
} ,
{
name : 'details' ,
label : ( ) => translate ( 'Details' ) ,
name : 'customFormats' ,
label : ( ) => translate ( 'CustomFormats' ) ,
isSortable : false ,
isVisible : true
} ,
{
@ -53,9 +49,13 @@ const columns = [
isSortable : true ,
isVisible : true
} ,
{
name : 'date' ,
label : ( ) => translate ( 'Date' ) ,
isVisible : true
} ,
{
name : 'actions' ,
label : ( ) => translate ( 'Actions' ) ,
isVisible : true
}
] ;
@ -4,7 +4,6 @@
word-break : break-word ;
}
. details ,
. actions {
composes : cell from '~Components/Table/Cells/TableRowCell.css' ;
@ -2,7 +2,6 @@
// Please do not change this file!
interface CssExports {
'actions' : string ;
'details' : string ;
'sourceTitle' : string ;
}
export const cssExports : CssExports ;
@ -11,7 +11,6 @@ import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellCo
import TableRowCell from 'Components/Table/Cells/TableRowCell' ;
import TableRow from 'Components/Table/TableRow' ;
import Popover from 'Components/Tooltip/Popover' ;
import Tooltip from 'Components/Tooltip/Tooltip' ;
import { icons , kinds , tooltipPositions } from 'Helpers/Props' ;
import formatCustomFormatScore from 'Utilities/Number/formatCustomFormatScore' ;
import translate from 'Utilities/String/translate' ;
@ -112,11 +111,19 @@ class ArtistHistoryRow extends Component {
/ >
< / T a b l e R o w C e l l >
< TableRowCell >
< AlbumFormats formats = { customFormats } / >
< / T a b l e R o w C e l l >
< TableRowCell >
{ formatCustomFormatScore ( customFormatScore , customFormats . length ) }
< / T a b l e R o w C e l l >
< RelativeDateCellConnector
date = { date }
/ >
< TableRowCell className = { styles . details } >
< TableRowCell className = { styles . action s} >
< Popover
anchor = {
< Icon
@ -134,25 +141,13 @@ class ArtistHistoryRow extends Component {
}
position = { tooltipPositions . LEFT }
/ >
< / T a b l e R o w C e l l >
< TableRowCell className = { styles . customFormatScore } >
< Tooltip
anchor = { formatCustomFormatScore (
customFormatScore ,
customFormats . length
) }
tooltip = { < AlbumFormats formats = { customFormats } / > }
position = { tooltipPositions . BOTTOM }
/ >
< / T a b l e R o w C e l l >
< TableRowCell className = { styles . actions } >
{
eventType === 'grabbed' &&
< IconButton
title = { translate ( 'MarkAsFailed' ) }
name = { icons . REMOVE }
size = { 14 }
onPress = { this . onMarkAsFailedPress }
/ >
}