Skip to content

Commit

Permalink
fix string resource label
Browse files Browse the repository at this point in the history
Signed-off-by: Manu Muñoz <[email protected]>
  • Loading branch information
mmmateos committed Dec 23, 2024
1 parent 0469699 commit 50b65d7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import org.hisp.dhis.mobile.ui.designsystem.component.RadioButtonData
import org.hisp.dhis.mobile.ui.designsystem.resource.provideStringResource
import org.hisp.dhis.mobile.ui.designsystem.theme.Spacing
import org.hisp.dhis.mobile.ui.designsystem.theme.TextColor
import java.util.Locale

@Composable
fun SchedulingDialogUi(
Expand All @@ -64,7 +65,7 @@ fun SchedulingDialogUi(
it.value,
selected = false,
enabled = true,
textInput = provideStringResource(it.value),
textInput = provideStringResource(it.value.lowercase(Locale.getDefault())),
)
}
var optionSelected by remember { mutableStateOf(yesNoOptions.first()) }
Expand Down

0 comments on commit 50b65d7

Please sign in to comment.