From 3a71196de3596519e4cc50ba56ef77309fc4b698 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Fri, 13 Oct 2023 00:14:33 -0500 Subject: [PATCH] fix popover --- core/src/components/friends-view/friend-item-actions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/friends-view/friend-item-actions.js b/core/src/components/friends-view/friend-item-actions.js index a5c59083..e46b2b3a 100644 --- a/core/src/components/friends-view/friend-item-actions.js +++ b/core/src/components/friends-view/friend-item-actions.js @@ -93,13 +93,13 @@ export class FriendItemActions extends connect(store)(LitElement) { attachToTarget(target) { if (!this.popperInstance && target) { this.popperInstance = createPopper(target, this, { - placement: 'bottom', - strategy: 'fixed', + placement: 'bottom' }); } } openPopover(target) { + console.log({target}) this.attachToTarget(target); this.style.display = 'block'; setTimeout(() => {