diff --git a/web/src/tippyjs.ts b/web/src/tippyjs.ts index 84d69630be..4f2d544048 100644 --- a/web/src/tippyjs.ts +++ b/web/src/tippyjs.ts @@ -817,4 +817,17 @@ export function initialize(): void { instance.destroy(); }, }); + + tippy.delegate("body", { + target: ".view_invitations", + delay: LONG_HOVER_DELAY, + content: $t({ + defaultMessage: "View details", + }), + placement: "bottom", + appendTo: () => document.body, + onHidden(instance) { + instance.destroy(); + }, + }); }