fix: simplify player birth year to just the year (drop '(né ...)')
This commit is contained in:
@@ -209,7 +209,7 @@ fun EventDetailScreen(
|
|||||||
},
|
},
|
||||||
supportingContent = {
|
supportingContent = {
|
||||||
if (player.dob.isNotBlank()) {
|
if (player.dob.isNotBlank()) {
|
||||||
Text("(né ${player.dob.take(4)})")
|
Text(player.dob.take(4))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
trailingContent = {
|
trailingContent = {
|
||||||
|
|||||||
Reference in New Issue
Block a user