From 75e3f0f4d38273c626793ec61b2856728ea6f756 Mon Sep 17 00:00:00 2001 From: Kyrylo Gliebov Date: Fri, 5 Oct 2018 11:36:45 +0200 Subject: [PATCH] Change to React.Fragment --- src/recordings.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/recordings.jsx b/src/recordings.jsx index 72bc82d..b0d82fe 100644 --- a/src/recordings.jsx +++ b/src/recordings.jsx @@ -903,7 +903,7 @@ class View extends React.Component { } if (this.state.recordingID === null) { return ( -
+
@@ -959,11 +959,11 @@ class View extends React.Component { hostname={this.state.hostname} list={this.state.recordingList} diff_hosts={this.state.diff_hosts} /> - + ); } else { return ( -
+
@@ -973,7 +973,7 @@ class View extends React.Component {
- + ); } }