From 52c00cfaef8c3ba440d8a859f181bc992c8e1279 Mon Sep 17 00:00:00 2001 From: Michael Rogers Date: Mon, 27 Feb 2023 15:57:15 -0600 Subject: [PATCH] Ignore focus mouseover event when composed in layout (#6373) Co-authored-by: Shefali Joshi --- src/plugins/imagery/components/ImageryView.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/imagery/components/ImageryView.vue b/src/plugins/imagery/components/ImageryView.vue index fc2930dea7..f236ee5baa 100644 --- a/src/plugins/imagery/components/ImageryView.vue +++ b/src/plugins/imagery/components/ImageryView.vue @@ -885,6 +885,10 @@ export default { }); }, focusElement() { + if (this.isComposedInLayout) { + return false; + } + this.$el.focus(); },