FIX: prevents mouseover to gain focus on sk row (#20550)
This was causing unattended effects on other elements. eg: the select-kit header input could lose focus when the list filtered would change size and cause the cursor to be positioned over a row.
This commit is contained in:
parent
5f57b4b5aa
commit
c52570ddc4
|
@ -128,7 +128,6 @@ export default Component.extend(UtilsMixin, {
|
|||
@action
|
||||
handleMouseEnter() {
|
||||
if (!this.isDestroying || !this.isDestroyed) {
|
||||
this.element.focus({ preventScroll: true });
|
||||
this.selectKit.onHover(this.rowValue, this.item);
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue