From 76d3bf2532ef21964e75f0ca45851c33fdaccc8c Mon Sep 17 00:00:00 2001 From: evykassirer Date: Wed, 13 Nov 2024 19:27:12 -0800 Subject: [PATCH] stream_list: Use delegate instead of default for tippy. --- web/src/stream_list.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/stream_list.ts b/web/src/stream_list.ts index be8176be9f..b2dabaea2b 100644 --- a/web/src/stream_list.ts +++ b/web/src/stream_list.ts @@ -851,7 +851,8 @@ export function initialize({ } export function initialize_tippy_tooltips(): void { - tippy.default("#stream_filters li .subscription_block .stream-name", { + tippy.delegate("body", { + target: "#stream_filters li .subscription_block .stream-name", delay: LONG_HOVER_DELAY, onShow(instance) { const stream_id = stream_id_for_elt($(instance.reference).parents("li.narrow-filter"));