fix(ui): filter chip label too long – show only selected value
This commit is contained in:
parent
d59663a2fa
commit
6a3009569b
1 changed files with 1 additions and 1 deletions
|
|
@ -376,7 +376,7 @@ private fun FilterDropdownChip(
|
|||
selected = isSelected,
|
||||
onClick = { expanded = true },
|
||||
label = {
|
||||
Text(if (isSelected) "$label: $selectedLabel" else label)
|
||||
Text(selectedLabel ?: label)
|
||||
},
|
||||
trailingIcon = {
|
||||
Icon(
|
||||
|
|
|
|||
Loading…
Reference in a new issue