Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/756384d94a902c304d312ded388f6809f234fb81
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -104,7 +104,7 @@ function AuthenticationRequiredModalContent(props) {
type = { inputTypes . TEXT }
name = "username"
onChange = { onInputChange }
helpTextWarning = { username === undefined || username . value === '' ? translate ( 'AuthenticationRequiredUsernameHelpTextWarning' ) : undefined }
helpTextWarning = { username ? . value ? undefined : translate ( 'AuthenticationRequiredUsernameHelpTextWarning' ) }
{ ... username }
/ >
< / F o r m G r o u p >
@ -116,7 +116,7 @@ function AuthenticationRequiredModalContent(props) {
type = { inputTypes . PASSWORD }
name = "password"
onChange = { onInputChange }
helpTextWarning = { password === undefined || password . value === '' ? translate ( 'AuthenticationRequiredPasswordHelpTextWarning' ) : undefined }
helpTextWarning = { password ? . value ? undefined : translate ( 'AuthenticationRequiredPasswordHelpTextWarning' ) }
{ ... password }
/ >
< / F o r m G r o u p >