Skip to content

Commit cbb9566

Browse files
committed
rl-dropdown-component: Replace component.$() call with $(component.element)
Using `this.$()` on components is deprecated
1 parent 82e3c47 commit cbb9566

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/mixins/rl-dropdown-component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export default Mixin.create({
9292

9393
clickoutHandler(event) {
9494
let { component } = event.data;
95-
let $c = component.$();
95+
let $c = $(component.element);
9696
let $target = $(event.target);
9797

9898
/* There is an issue when the click triggered a dom change in the

0 commit comments

Comments
 (0)