From e54945b12ad3397256f24914245e4ff95737db01 Mon Sep 17 00:00:00 2001
From: Chris Lawton <chris.lawton@torchbox.com>
Date: Mon, 14 Jan 2019 13:04:44 +0000
Subject: [PATCH] move submissions by round component

---
 opentech/static_src/src/app/src/SubmissionsByRoundApp.js | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/opentech/static_src/src/app/src/SubmissionsByRoundApp.js b/opentech/static_src/src/app/src/SubmissionsByRoundApp.js
index 640776b60..6c585f5bd 100644
--- a/opentech/static_src/src/app/src/SubmissionsByRoundApp.js
+++ b/opentech/static_src/src/app/src/SubmissionsByRoundApp.js
@@ -34,17 +34,13 @@ class SubmissionsByRoundApp extends React.Component {
 
                 {this.state.detailOpen &&
                     <DetailView>
-                        {this.renderSubmissionsByRound()}
+                        <SubmissionsByRoundContainer roundId={this.props.roundId} />
                         <DisplayPanel />
                     </DetailView>
                 }
             </>
         )
     }
-
-    renderSubmissionsByRound() {
-        return <SubmissionsByRoundContainer roundId={this.props.roundId} />;
-    }
 }
 
 
-- 
GitLab