Also fix live locations

This commit is contained in:
Tobias Fella
2025-08-29 18:12:08 +02:00
committed by Tobias Fella
parent 62a770b3e2
commit 69568c628f

View File

@@ -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
}
}