We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a67745a commit 9aee855Copy full SHA for 9aee855
core/ui/src/main/java/co/yml/coreui/core/ui/ytag/TagViewContainer.kt
@@ -125,15 +125,15 @@ fun TagViewContainer(
125
// over flow item
126
with(moreTag) {
127
val tagViewModifiers = tagViewModifiers.copy(onClick = {
128
- tagViewContainerModifiers.onClick.invoke(moreTag)
+ moreTag.tagViewModifiers.onClick.invoke(moreTag)
129
})
130
TagView(
131
- text = overFlowText.value,
+ text = "",
132
leadingIcon = leadingIcon,
133
trailingIcon = trailingIcon,
134
enabled = enabled,
135
tagViewModifiers = tagViewModifiers,
136
- overFlowText = ""
+ overFlowText = overFlowText.value
137
)
138
}
139
0 commit comments