Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/4712f7f947f0fb205d2431cbb0c85c6ab74031ec
You should set ROOT_URL correctly, otherwise the web may not work correctly.
8 changed files with
8 additions and
1 deletions
@ -141,6 +141,7 @@ class BlacklistRow extends Component {
onPress = { this . onDetailsPress }
/ >
< IconButton
title = "Remove from blacklist"
name = { icons . REMOVE }
kind = { kinds . DANGER }
onPress = { onRemovePress }
@ -268,6 +268,7 @@ class QueueRow extends Component {
}
< SpinnerIconButton
title = "Remove from queue"
name = { icons . REMOVE }
isSpinning = { isRemoving }
onPress = { this . onRemoveQueueItemPress }
@ -40,6 +40,7 @@ function ImportArtistRootFolderRow(props) {
< TableRowCell className = { styles . actions } >
< IconButton
title = "Remove root folder"
name = { icons . REMOVE }
onPress = { onDeletePress }
/ >
@ -133,6 +133,7 @@ class ArtistHistoryRow extends Component {
{
eventType === 'grabbed' &&
< IconButton
title = "Mark as failed"
name = { icons . REMOVE }
onPress = { this . onMarkAsFailedPress }
/ >
@ -89,6 +89,7 @@ class CustomFilter extends Component {
/ >
< SpinnerIconButton
title = "Remove filter"
name = { icons . REMOVE }
isSpinning = { this . state . isDeleting }
onPress = { this . onRemovePress }
@ -44,8 +44,8 @@ class RecentFolderRow extends Component {
< TableRowCell className = { styles . actions } >
< IconButton
name = { icons . REMOVE }
title = "Remove"
name = { icons . REMOVE }
onPress = { this . onRemovePress }
/ >
< / T a b l e R o w C e l l >
@ -114,6 +114,7 @@ class BackupRow extends Component {
/ >
< IconButton
title = "Delete backup"
name = { icons . DELETE }
onPress = { this . onDeletePress }
/ >
@ -224,6 +224,7 @@ class QueuedTaskRow extends Component {
{
status === 'queued' &&
< IconButton
title = "Removed from task queue"
name = { icons . REMOVE }
onPress = { this . onCancelPress }
/ >