Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/b6072200a27f83fdb0e5cc679850d4ff31d8e9ec?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -37,7 +37,7 @@ export default function Widget({ options }) {
< Resource icon = { FaMemory } label = { t ( "glances.wait" ) } percentage = "0" / >
{ options . cputemp && < Resource icon = { FaThermometerHalf } label = { t ( "glances.wait" ) } percentage = "0" / > }
{ options . disk && ! Array . isArray ( options . disk ) && < Resource key = { options . disk } icon = { FiHardDrive } label = { t ( "glances.wait" ) } percentage = "0" / > }
{ options . disk && Array . isArray ( options . disk ) && options . disk . map ( ( disk ) => < Resource key = { ` disk_ ${ disk . mnt _point } ` } icon = { FiHardDrive } label = { t ( "glances.wait" ) } percentage = "0" / > ) }
{ options . disk && Array . isArray ( options . disk ) && options . disk . map ( ( disk ) => < Resource key = { ` disk_ ${ disk } ` } icon = { FiHardDrive } label = { t ( "glances.wait" ) } percentage = "0" / > ) }
{ options . uptime && < Resource icon = { FaRegClock } label = { t ( "glances.wait" ) } percentage = "0" / > }
{ options . label && < WidgetLabel label = { options . label } / > }
< / Resources > ;
@ -108,7 +108,7 @@ export default function Widget({ options }) {
expanded = { options . expanded }
/ >
{ disks . map ( ( disk ) => (
< Resource key = { ` disk_ ${ disk . mnt _point } ` }
< Resource key = { ` disk_ ${ disk . mnt _point ? ? disk . device _name } ` }
icon = { FiHardDrive }
value = { t ( "common.bytes" , { value : disk . free } ) }
label = { t ( "glances.free" ) }