mirror of https://github.com/zulip/zulip.git
message_controls: Fix "undefined" tooltip content.
This commit is contained in:
parent
00988c7ea8
commit
e8f5e8da4f
|
@ -171,8 +171,10 @@ export function initialize() {
|
|||
onShow(instance) {
|
||||
// Handle dynamic "starred messages" and "edit" widgets.
|
||||
const $elem = $(instance.reference);
|
||||
const tippy_content = $elem.attr("data-tippy-content");
|
||||
const $template = $("#" + $elem.attr("data-tooltip-template-id"));
|
||||
instance.setContent(parse_html($template.html()));
|
||||
|
||||
instance.setContent(tippy_content ?? parse_html($template.html()));
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue