Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/c62afe7d02d84718d8213c3b274c5ce58bef6551
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
4 deletions
@ -9,7 +9,7 @@ import {
Stack ,
Text ,
} from "@mantine/core" ;
import { use Hover , useMediaQuery } from "@mantine/hooks" ;
import { use Disclosure , useMediaQuery } from "@mantine/hooks" ;
import {
faCheckCircle ,
faExclamationCircle ,
@ -33,7 +33,7 @@ const StateIcon: FunctionComponent<StateIconProps> = ({
} ) = > {
const hasIssues = dont . length > 0 ;
const { hovered , ref } = useHover ( ) ;
const [opened , { close , open } ] = useDisclosure ( false ) ;
const isMobile = useMediaQuery ( ` (max-width: ${ em ( 750 ) } ) ` ) ;
@ -52,9 +52,9 @@ const StateIcon: FunctionComponent<StateIconProps> = ({
} ;
return (
< Popover opened= { hovered } position = "top" width = { 360 } withArrow withinPortal >
< Popover position= "left" opened = { opened } width = { 360 } withArrow withinPortal >
< Popover.Target >
< Text ref= { ref } >
< Text onMouseEnter= { open } onMouseLeave = { close } >
< PopoverTarget / >
< / Text >
< / Popover.Target >