1 files changed, 11 insertions, 0 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index d81e3ae1..a53c8a94 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -4,8 +4,19 @@ Rectangle {
anchors.fill: parent
Text {
+ visible: !timeline
anchors.centerIn: parent
text: qsTr("No room open")
font.pointSize: 24
}
+
+ ListView {
+ visible: timeline != undefined
+ anchors.fill: parent
+
+ model: timeline
+ delegate: Text {
+ text: userId
+ }
+ }
}
|