Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/4d68f55dfa15725be671676bc667e57b816688a0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
3 deletions
@ -17,12 +17,20 @@ export default function Component({ service }) {
return < Container service = { service } error = { omadaAPIError } / > ;
}
if ( ! widget . fields ) {
widget . fields = [ "connectedAp" , "activeUser" , "alerts" , "connectedGateway" ] ;
} else if ( widget . fields ? . length > 4 ) {
widget . fields = widget . fields . slice ( 0 , 4 ) ;
}
if ( ! omadaData ) {
return (
< Container service = { service } >
< Block label = "omada.connectedAp" / >
< Block label = "omada.activeUser" / >
< Block label = "omada.alerts" / >
< Block label = "omada.connectedGateway" / >
< Block label = "omada.connectedSwitches" / >
< / Container >
) ;
}
@ -32,9 +40,8 @@ export default function Component({ service }) {
< Block label = "omada.connectedAp" value = { t ( "common.number" , { value : omadaData . connectedAp } ) } / >
< Block label = "omada.activeUser" value = { t ( "common.number" , { value : omadaData . activeUser } ) } / >
< Block label = "omada.alerts" value = { t ( "common.number" , { value : omadaData . alerts } ) } / >
{ omadaData . connectedGateways > 0 && (
< Block label = "omada.connectedGateway" value = { t ( "common.number" , { value : omadaData . connectedGateways } ) } / >
) }
< Block label = "omada.connectedGateway" value = { t ( "common.number" , { value : omadaData . connectedGateways } ) } / >
< Block label = "omada.connectedSwitches" value = { t ( "common.number" , { value : omadaData . connectedSwitches } ) } / >
< / Container >
) ;
}