From 6b9d3c9cce65cf88fa3b9b33bade29891ff63e60 Mon Sep 17 00:00:00 2001
From: Jaden <jadenpdi@gmail.com>
Date: Wed, 9 Jan 2019 10:45:28 -0800
Subject: [PATCH] add fragment to alg editor to stop reactstrap warning, closes
 #162

---
 conda/js/src/components/algorithm/AlgorithmEditor.jsx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/conda/js/src/components/algorithm/AlgorithmEditor.jsx b/conda/js/src/components/algorithm/AlgorithmEditor.jsx
index 7b5845c3..2318f550 100644
--- a/conda/js/src/components/algorithm/AlgorithmEditor.jsx
+++ b/conda/js/src/components/algorithm/AlgorithmEditor.jsx
@@ -564,6 +564,7 @@ export class AlgorithmEditor extends React.Component<Props, State> {
 			</div>
 			{/* simple universal stuff - description, what type of alg, if its splittable */}
 			<Form>
+				<React.Fragment>
 				<FormGroup tag='fieldset'>
 					<FormGroup>
 						<Label for='algDesc'>Short Description</Label>
@@ -700,6 +701,7 @@ export class AlgorithmEditor extends React.Component<Props, State> {
 					{ this.renderLibraries() }
 					{ this.props.data.contents.results && this.renderResults() }
 				</TabContent>
+			</React.Fragment>
 			</Form>
 		</div>
 	);
-- 
GitLab