We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eae4a1 commit 46baf0bCopy full SHA for 46baf0b
lib/ruby_ui/combobox/combobox_controller.js
@@ -93,9 +93,11 @@ export default class extends Controller {
93
94
if (text.indexOf(filterTerm) > -1) {
95
input.parentElement.classList.remove("hidden")
96
+ this.toggleTarget.parentElement.classList.remove("hidden")
97
resultCount++
98
} else {
99
input.parentElement.classList.add("hidden")
100
+ this.toggleTarget.parentElement.classList.add("hidden")
101
}
102
})
103
0 commit comments