From d72c215b0e808815b4b74564a1e615619cdf592d Mon Sep 17 00:00:00 2001 From: Andrew Huang Date: Fri, 10 Jan 2025 11:19:27 -0800 Subject: [PATCH] reorder --- panel/chat/message.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panel/chat/message.py b/panel/chat/message.py index d2a5388469..a6024f4910 100644 --- a/panel/chat/message.py +++ b/panel/chat/message.py @@ -185,6 +185,9 @@ class ChatMessage(Pane): to use when the user is specified but the avatar is. You can modify, but not replace the dictionary.""") + edited = param.Event(doc=""" + An event that is triggered when the message is edited.""") + footer_objects = param.List(doc=""" A list of objects to display in the column of the footer of the message.""") @@ -247,9 +250,6 @@ class ChatMessage(Pane): user = param.Parameter(default="User", doc=""" Name of the user who sent the message.""") - edited = param.Event(doc=""" - An event that is triggered when the message is edited.""") - _stylesheets: ClassVar[list[str]] = [f"{CDN_DIST}css/chat_message.css"] # Declares whether Pane supports updates to the Bokeh model