left_sidebar: Open topic menu when clicking on follow topic icon.

Earlier, in left sidebar, clicking on followed topic icon would narrow
to the topic.

This commit introduces the ability to open topic status menu from
left sidebar from followed topic icon.

Fixes: zulip#28941.
This commit is contained in:
Pratik Chanda
2024-07-04 02:23:31 +05:30
committed by Tim Abbott
parent 72f0695e34
commit a7703e9f5f
7 changed files with 23 additions and 3 deletions

View File

@@ -678,7 +678,11 @@ export function initialize(): void {
});
tippy.delegate("body", {
target: ["#recent_view .recipient_bar_icon", "#inbox-view .recipient_bar_icon"].join(","),
target: [
"#recent_view .recipient_bar_icon",
"#inbox-view .recipient_bar_icon",
"#left-sidebar-container .visibility-policy-icon",
].join(","),
...topic_visibility_policy_tooltip_props,
});