fix popover

This commit is contained in:
PhilReact 2023-10-13 00:14:33 -05:00
parent 72bb39cc62
commit 3a71196de3

View File

@ -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(() => {