small string fix

This commit is contained in:
brreynie 2023-05-04 21:38:16 +02:00
parent d80f12dfdf
commit b6e3c8d5be
2 changed files with 3 additions and 2 deletions

View file

@ -70,7 +70,7 @@ fun SubjectEntry(
verticalAlignment = Alignment.CenterVertically,
) {
Text(
text = "${HoursMinutesSeconds(subject.time)}",
text = HoursMinutesSeconds(subject.time).toString(),
)
Row(
verticalAlignment = Alignment.CenterVertically,