Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/03f0bdbe39e9551cecf53876db0993e0a30de3aa
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
20 additions and
11 deletions
@ -65,25 +65,34 @@ const SeriesView: FunctionComponent = () => {
cell : ( row ) = > {
const { episodeFileCount , episodeMissingCount , profileId , title } =
row . row . original ;
let progress = 0 ;
let label = "" ;
if ( episodeFileCount === 0 || ! profileId ) {
progress = 0.0 ;
} else {
progress = ( 1.0 - episodeMissingCount / episodeFileCount ) * 100.0 ;
label = ` ${
episodeFileCount - episodeMissingCount
} / $ { episodeFileCount } ` ;
}
const label = ` ${ episodeFileCount - episodeMissingCount } / ${ episodeFileCount } ` ;
return (
< Progress.Root key = { title } size = "xl" >
< Progress.Section
value = { progress }
value = {
episodeFileCount === 0 || ! profileId
? 0
: ( 1.0 - episodeMissingCount / episodeFileCount ) * 100.0
}
color = { episodeMissingCount === 0 ? "brand" : "yellow" }
>
< Progress.Label > { label } < / Progress.Label >
< / Progress.Section >
{ episodeMissingCount === episodeFileCount && (
< Progress.Label
styles = { {
label : {
position : "absolute" ,
top : "3px" ,
left : "50%" ,
transform : "translateX(-50%)" ,
} ,
} }
>
{ label }
< / Progress.Label >
) }
< / Progress.Root >
) ;
} ,