Likely fix saved searches not clicking the right one
This commit is contained in:
parent
7581c8e519
commit
11c0cdfa78
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ class SourceFilterSheet(
|
|||
}
|
||||
val chips: MutableList<Chip> = mutableListOf()
|
||||
|
||||
searches.withIndex().sortedBy { it.value.name.toLowerCase() }.forEach { (index, search) ->
|
||||
searches.withIndex().sortedBy { it.value.name }.forEach { (index, search) ->
|
||||
val chip = Chip(context).apply {
|
||||
text = search.name
|
||||
setOnClickListener { onSavedSearchClicked(index) }
|
||||
|
|
|
|||
Loading…
Reference in a new issue