Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit 7cb74f0

Browse files
committed
Simplify overflow selection on SharePublicRow
1 parent d9a2bac commit 7cb74f0

File tree

1 file changed

+1
-1
lines changed
  • homeUi/src/main/kotlin/com/gravatar/app/homeUi/presentation/home/share/components

1 file changed

+1
-1
lines changed

homeUi/src/main/kotlin/com/gravatar/app/homeUi/presentation/home/share/components/SharePublicRow.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ internal fun SharePublicRow(
4848
style = MaterialTheme.typography.bodyLarge,
4949
color = MaterialTheme.colorScheme.onSurface,
5050
maxLines = if (singleLineValue) 1 else Int.MAX_VALUE,
51-
overflow = if (singleLineValue) TextOverflow.Ellipsis else TextOverflow.Visible,
51+
overflow = TextOverflow.Ellipsis,
5252
modifier = Modifier.fillMaxWidth(),
5353
)
5454
}

0 commit comments

Comments
 (0)