batterypopup: move health to below energy rate

This commit is contained in:
end-4
2025-11-06 23:04:42 +01:00
parent bf70be7f4a
commit 6afe810d69
@@ -42,12 +42,6 @@ StyledPopup {
}
}
StyledPopupValueRow {
icon: "heart_check"
label: Translation.tr("Health:")
value: `${(Battery.health).toFixed(1)}%`
}
StyledPopupValueRow {
visible: !(Battery.chargeState != 4 && Battery.energyRate == 0)
icon: "bolt"
@@ -68,5 +62,11 @@ StyledPopup {
}
}
}
StyledPopupValueRow {
icon: "heart_check"
label: Translation.tr("Health:")
value: `${(Battery.health).toFixed(1)}%`
}
}
}