small string fix
This commit is contained in:
parent
d80f12dfdf
commit
b6e3c8d5be
2 changed files with 3 additions and 2 deletions
|
@ -70,7 +70,7 @@ fun SubjectEntry(
|
|||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
Text(
|
||||
text = "${HoursMinutesSeconds(subject.time)}",
|
||||
text = HoursMinutesSeconds(subject.time).toString(),
|
||||
)
|
||||
Row(
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
|
|
Reference in a new issue