Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/b1bba66a6b790ff8834520add814541ad32c0019
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
2 deletions
@ -155,6 +155,7 @@
} ,
"overseerr" : {
"pending" : "Pending" ,
"processing" : "Processing" ,
"approved" : "Approved" ,
"available" : "Available"
} ,
@ -313,7 +314,7 @@
"child_bridges" : "Child Bridges" ,
"child_bridges_status" : "{{ok}}/{{total}}"
} ,
"watchtower" : {
"watchtower" : {
"containers_scanned" : "Scanned" ,
"containers_updated" : "Updated" ,
"containers_failed" : "Failed"
@ -360,4 +361,4 @@
"inbox" : "Inbox" ,
"total" : "Total"
}
}
}
@ -15,6 +15,7 @@ export default function Component({ service }) {
return (
< Container service = { service } >
< Block label = "overseerr.pending" / >
< Block label = "overseerr.processing" / >
< Block label = "overseerr.approved" / >
< Block label = "overseerr.available" / >
< / Container >
@ -24,6 +25,7 @@ export default function Component({ service }) {
return (
< Container service = { service } >
< Block label = "overseerr.pending" value = { statsData . pending } / >
< Block label = "overseerr.processing" value = { statsData . processing } / >
< Block label = "overseerr.approved" value = { statsData . approved } / >
< Block label = "overseerr.available" value = { statsData . available } / >
< / Container >
@ -9,6 +9,7 @@ const widget = {
endpoint : "request/count" ,
validate : [
"pending" ,
"processing" ,
"approved" ,
"available" ,
] ,