1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-3355 Chats | Fix | Minor fix

This commit is contained in:
Evgenii Kozlov 2025-04-12 15:54:27 +02:00
parent 867d28a7ec
commit cb24ecbcbf

View file

@ -142,7 +142,7 @@ fun Bubble(
// Bubble username section
if (!isUserAuthor) {
Text(
text = name,
text = name.ifEmpty { stringResource(R.string.untitled) },
style = Caption1Medium,
color = colorResource(id = R.color.text_primary),
maxLines = 1,