From 9be4598a0eee234a82243a50b033a902c8df12d2 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 2 Nov 2018 15:05:55 +0100 Subject: [PATCH] use main element for room/group view --- src/components/structures/GroupView.js | 4 ++-- src/components/structures/RoomView.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/structures/GroupView.js b/src/components/structures/GroupView.js index 785a9f5b01..f24524cc5f 100644 --- a/src/components/structures/GroupView.js +++ b/src/components/structures/GroupView.js @@ -1292,7 +1292,7 @@ export default React.createClass({ }; return ( -
+
@@ -1318,7 +1318,7 @@ export default React.createClass({ { this._getGroupSection() } -
+
); } else if (this.state.error) { if (this.state.error.httpStatus === 404) { diff --git a/src/components/structures/RoomView.js b/src/components/structures/RoomView.js index 6c6a8873f1..2d9443efb8 100644 --- a/src/components/structures/RoomView.js +++ b/src/components/structures/RoomView.js @@ -1820,7 +1820,7 @@ module.exports = React.createClass({ const rightPanel = this.state.room ? : undefined; return ( -
+
-
+ ); }, });