Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/377bd6e2b74d05bbfa300f3844f4cd3739b5ec24
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
16 additions and
1 deletions
@ -83,6 +83,7 @@ class CalendarHeader extends Component {
end ,
longDateFormat ,
isSmallScreen ,
collapseViewButtons ,
onTodayPress ,
onPreviousPress ,
onNextPress
@ -145,7 +146,7 @@ class CalendarHeader extends Component {
}
{
isSmallScreen ?
collapseViewButtons ?
< Menu
className = { styles . viewMenu }
alignMenu = { align . RIGHT }
@ -158,6 +159,18 @@ class CalendarHeader extends Component {
< / M e n u B u t t o n >
< MenuContent >
{
isSmallScreen ?
null :
< ViewMenuItem
name = { calendarViews . MONTH }
selectedView = { view }
onPress = { this . onViewChange }
>
Month
< / V i e w M e n u I t e m >
}
< ViewMenuItem
name = { calendarViews . WEEK }
selectedView = { view }
@ -243,6 +256,7 @@ CalendarHeader.propTypes = {
end : PropTypes . string . isRequired ,
view : PropTypes . oneOf ( calendarViews . all ) . isRequired ,
isSmallScreen : PropTypes . bool . isRequired ,
collapseViewButtons : PropTypes . bool . isRequired ,
longDateFormat : PropTypes . string . isRequired ,
onViewChange : PropTypes . func . isRequired ,
onTodayPress : PropTypes . func . isRequired ,
@ -23,6 +23,7 @@ function createMapStateToProps() {
] ) ;
result . isSmallScreen = dimensions . isSmallScreen ;
result . collapseViewButtons = dimensions . isLargeScreen ;
result . longDateFormat = uiSettings . longDateFormat ;
return result ;