From 69568c628f188383d9e6a33c912c11dc0436ed31 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Fri, 29 Aug 2025 18:12:08 +0200 Subject: [PATCH] Also fix live locations --- src/messagecontent/LiveLocationComponent.qml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/messagecontent/LiveLocationComponent.qml b/src/messagecontent/LiveLocationComponent.qml index c77a0a362..9e86c043c 100644 --- a/src/messagecontent/LiveLocationComponent.qml +++ b/src/messagecontent/LiveLocationComponent.qml @@ -27,6 +27,15 @@ ColumnLayout { */ required property string display + /** + * @brief The attributes of the component. + */ + required property var componentAttributes + + required property int index + + required property NeochatRoomMember author + Layout.fillWidth: true Layout.maximumWidth: Message.maxContentWidth @@ -83,5 +92,9 @@ ColumnLayout { TextComponent { display: root.display visible: root.display !== "" + componentAttributes: root.componentAttributes + index: root.index + eventId: root.eventId + author: root.author } }