Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/defc1195b21162770de17b00c20b840dd827373f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
0 deletions
@ -214,6 +214,7 @@
"pihole" : {
"queries" : "Queries" ,
"blocked" : "Blocked" ,
"blocked_percent" : "Blocked %" ,
"gravity" : "Gravity"
} ,
"adguard" : {
@ -20,6 +20,7 @@ export default function Component({ service }) {
< Container service = { service } >
< Block label = "pihole.queries" / >
< Block label = "pihole.blocked" / >
< Block label = "pihole.blocked_percent" / >
< Block label = "pihole.gravity" / >
< / Container >
) ;
@ -29,6 +30,7 @@ export default function Component({ service }) {
< Container service = { service } >
< Block label = "pihole.queries" value = { t ( "common.number" , { value : parseInt ( piholeData . dns _queries _today , 10 ) } ) } / >
< Block label = "pihole.blocked" value = { t ( "common.number" , { value : parseInt ( piholeData . ads _blocked _today , 10 ) } ) } / >
< Block label = "pihole.blocked_percent" value = { t ( "common.percent" , { value : parseFloat ( piholeData . ads _percentage _today . toPrecision ( 3 ) ) } ) } / >
< Block label = "pihole.gravity" value = { t ( "common.number" , { value : parseInt ( piholeData . domains _being _blocked , 10 ) } ) } / >
< / Container >
) ;
@ -10,6 +10,7 @@ const widget = {
validate : [
"dns_queries_today" ,
"ads_blocked_today" ,
"ads_percentage_today" ,
"domains_being_blocked"
]
} ,