tooltip: Add 'View details' tooltip to invite details button.

This commit is contained in:
Harsh 2024-10-17 15:59:21 +05:30 committed by Harsh
parent a3f0a0a083
commit ca39fed641
1 changed files with 13 additions and 0 deletions

View File

@ -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();
},
});
}