Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/0b1b19a1655c97e1c43d4f174efd56de8800688f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
6 deletions
@ -4,7 +4,7 @@ import { icons } from 'Helpers/Props';
import translate from 'Utilities/String/translate' ;
import FilterMenuContent from './FilterMenuContent' ;
import Menu from './Menu' ;
import PageMenuButton from './Page MenuButton';
import ToolbarMenuButton from './Toolbar MenuButton';
import styles from './FilterMenu.css' ;
class FilterMenu extends Component {
@ -106,7 +106,7 @@ FilterMenu.propTypes = {
FilterMenu . defaultProps = {
className : styles . filterMenu ,
isDisabled : false ,
buttonComponent : Page MenuButton
buttonComponent : Toolbar MenuButton
} ;
export default FilterMenu ;
@ -9,7 +9,7 @@ import styles from './ToolbarMenuButton.css';
function ToolbarMenuButton ( props ) {
const {
iconName ,
i ndicator,
showI ndicator,
text ,
... otherProps
} = props ;
@ -26,7 +26,7 @@ function ToolbarMenuButton(props) {
/ >
{
i ndicator &&
showI ndicator &&
< span
className = { classNames (
styles . indicatorContainer ,
@ -53,11 +53,11 @@ function ToolbarMenuButton(props) {
ToolbarMenuButton . propTypes = {
iconName : PropTypes . object . isRequired ,
text : PropTypes . string ,
i ndicator: PropTypes . bool . isRequired
showI ndicator: PropTypes . bool . isRequired
} ;
ToolbarMenuButton . defaultProps = {
i ndicator: false
showI ndicator: false
} ;
export default ToolbarMenuButton ;