diff --git a/client/homebrew/pages/editPage/editPage.jsx b/client/homebrew/pages/editPage/editPage.jsx
index d5af310b5..0086a7c9a 100644
--- a/client/homebrew/pages/editPage/editPage.jsx
+++ b/client/homebrew/pages/editPage/editPage.jsx
@@ -390,7 +390,7 @@ const EditPage = createClass({
{this.renderNavbar()}
-
+
-
+
{this.renderNavbar()}
-
+
{/* Apply CSS from Style tab */}
{this.renderStyle()}
- ;
diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx
index 2101480dc..4b12dec48 100644
--- a/shared/naturalcrit/splitPane/splitPane.jsx
+++ b/shared/naturalcrit/splitPane/splitPane.jsx
@@ -24,6 +24,9 @@ const SplitPane = createClass({
};
},
+ pane1 : React.createRef(null),
+ pane2 : React.createRef(null),
+
componentDidMount : function() {
const dividerPos = window.localStorage.getItem(this.props.storageKey);
if(dividerPos){
@@ -137,7 +140,6 @@ const SplitPane = createClass({
render : function(){
return
{React.cloneElement(this.props.children[0], {
@@ -147,7 +149,7 @@ const SplitPane = createClass({
})}
{this.renderDivider()}
-
{this.props.children[1]}
+
{this.props.children[1]}
;
}
});