mirror of
https://github.com/bitwarden/android.git
synced 2025-02-16 20:09:59 +03:00
BIT-1349: Generator screen text overlap bug (#1037)
This commit is contained in:
parent
c262dc03c1
commit
b14ed30af3
1 changed files with 6 additions and 1 deletions
|
@ -28,6 +28,7 @@ import androidx.compose.ui.semantics.clearAndSetSemantics
|
|||
import androidx.compose.ui.semantics.contentDescription
|
||||
import androidx.compose.ui.semantics.role
|
||||
import androidx.compose.ui.semantics.semantics
|
||||
import androidx.compose.ui.text.style.TextOverflow
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.dp
|
||||
import com.x8bit.bitwarden.R
|
||||
|
@ -91,7 +92,11 @@ fun BitwardenMultiSelectButton(
|
|||
readOnly = true,
|
||||
label = {
|
||||
Row {
|
||||
Text(text = label)
|
||||
Text(
|
||||
text = label,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
)
|
||||
tooltip?.let {
|
||||
Spacer(modifier = Modifier.width(3.dp))
|
||||
IconButton(
|
||||
|
|
Loading…
Add table
Reference in a new issue