mirror of
https://github.com/nasa/openmct.git
synced 2024-12-26 16:21:06 +00:00
Ignore focus mouseover event when composed in layout (#6373)
Co-authored-by: Shefali Joshi <simplyrender@gmail.com>
This commit is contained in:
parent
96d723a424
commit
52c00cfaef
@ -885,6 +885,10 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
focusElement() {
|
focusElement() {
|
||||||
|
if (this.isComposedInLayout) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
this.$el.focus();
|
this.$el.focus();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user