From 0a082d94bd26558aa0120d0c1b00022de9dad486 Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Mon, 18 Dec 2023 14:13:40 +0100 Subject: [PATCH] Small fix --- panel/chat/message.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panel/chat/message.py b/panel/chat/message.py index 977c8f9467..662c238f0b 100644 --- a/panel/chat/message.py +++ b/panel/chat/message.py @@ -232,6 +232,8 @@ def __init__(self, object=None, **params): value=params.get('reactions', []), visible=self.param.show_reaction_icons ) + else: + reaction_icons.visible = self.param.show_reaction_icons self._internal = True super().__init__(object=object, **params) self.reaction_icons.link(self, value="reactions", bidirectional=True)