From 698f5a4b54a6d48d892064e204a5f15790379340 Mon Sep 17 00:00:00 2001 From: geoffroy-noel-ddh Date: Tue, 1 Oct 2024 22:44:04 +0100 Subject: [PATCH] fix(searc): the annotation preview popover would appear on the right when hovering results. --- app/assets/search.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/search.mjs b/app/assets/search.mjs index 53efae5c3..e19a868c1 100644 --- a/app/assets/search.mjs +++ b/app/assets/search.mjs @@ -505,6 +505,7 @@ createApp({ // preview annotation onMouseEnterItem(item) { this.hoveredItem = item + this.showModalOnTheRight = false }, onMouseLeaveItem(item) { this.hoveredItem = null