Fix memory module using MB, instead of GB

This commit is contained in:
ItsDrike 2023-01-25 02:12:11 +01:00
parent 05dcf54c6a
commit 56140d624f
No known key found for this signature in database
GPG key ID: B014E761034AF742

View file

@ -10,6 +10,6 @@
:text " ") :text " ")
(label (label
:class "value" :class "value"
:text "${round(EWW_RAM.used_mem / 1000000,1)}G: ${round(EWW_RAM.used_mem_perc,0)}%" :text "${round(EWW_RAM.used_mem / 1000000000,1)}G: ${round(EWW_RAM.used_mem_perc,0)}%"
) )
))) )))