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,
|
selected = isSelected,
|
||||||
onClick = { expanded = true },
|
onClick = { expanded = true },
|
||||||
label = {
|
label = {
|
||||||
Text(if (isSelected) "$label: $selectedLabel" else label)
|
Text(selectedLabel ?: label)
|
||||||
},
|
},
|
||||||
trailingIcon = {
|
trailingIcon = {
|
||||||
Icon(
|
Icon(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue