mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
REFACTOR: removes implicit operand conversion (#9700)
This commit is contained in:
parent
6359a5f8a9
commit
9d172eeaa5
@ -115,7 +115,7 @@ export default SelectKitComponent.extend({
|
||||
event.stopPropagation();
|
||||
|
||||
const input = this.getFilterInput();
|
||||
if (input && !input.value.length >= 1) {
|
||||
if (input && input.value.length === 0) {
|
||||
const selected = this.element.querySelectorAll(
|
||||
".select-kit-header .choice.select-kit-selected-name"
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user