From d3517cdb71dfb7d5b4944f0805376569f796592b Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 14 Oct 2019 10:44:42 +0100 Subject: [PATCH] actually pass role="tabpanel" to the DOM for FilePanel and NotifPanel Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/structures/FilePanel.js | 22 +++++++++---------- .../structures/NotificationPanel.js | 20 ++++++++--------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/components/structures/FilePanel.js b/src/components/structures/FilePanel.js index fb2bdcad42..c7e8295f80 100644 --- a/src/components/structures/FilePanel.js +++ b/src/components/structures/FilePanel.js @@ -117,17 +117,17 @@ const FilePanel = createReactClass({ // console.log("rendering TimelinePanel for timelineSet " + this.state.timelineSet.room.roomId + " " + // "(" + this.state.timelineSet._timelines.join(", ") + ")" + " with key " + this.props.roomId); return ( - +
+ +
); } else { return ( diff --git a/src/components/structures/NotificationPanel.js b/src/components/structures/NotificationPanel.js index 3a07bf2e63..470c7c8728 100644 --- a/src/components/structures/NotificationPanel.js +++ b/src/components/structures/NotificationPanel.js @@ -38,16 +38,16 @@ const NotificationPanel = createReactClass({ const timelineSet = MatrixClientPeg.get().getNotifTimelineSet(); if (timelineSet) { return ( - +
+ +
); } else { console.error("No notifTimelineSet available!");