Update EnvironmentMetrics.kt - μR/h (#3008)

Signed-off-by: b8b8 <156552149+b8b8@users.noreply.github.com>
This commit is contained in:
b8b8 2025-09-06 16:35:05 -07:00 committed by GitHub
parent ce60d490b7
commit 188f60ada6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -310,7 +310,7 @@ private fun RadiationDisplay(envMetrics: TelemetryProtos.EnvironmentMetrics) {
if (!radiation.isNaN() && radiation > 0f) {
Row(modifier = Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.SpaceBetween) {
Text(
text = "%s %.2f µSv/h".format(stringResource(R.string.radiation), radiation),
text = "%s %.2f µR/h".format(stringResource(R.string.radiation), radiation),
color = MaterialTheme.colorScheme.onSurface,
fontSize = MaterialTheme.typography.labelLarge.fontSize,
)