From 17584dde43e858a2b9067e50aa15ef8303169dce Mon Sep 17 00:00:00 2001 From: Pavel Dohnal Date: Mon, 3 Jul 2017 08:39:02 +0100 Subject: [PATCH] Fix help rendering [MAILPOET-949] --- assets/js/src/help/help.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/assets/js/src/help/help.jsx b/assets/js/src/help/help.jsx index a95ae8691a..109c5c2332 100644 --- a/assets/js/src/help/help.jsx +++ b/assets/js/src/help/help.jsx @@ -14,11 +14,11 @@ const App = React.createClass({ } }); -const container = document.getElementById('mailpoet_help'); +const container = document.getElementById('help_container'); if(container) { - const mailpoet_listing = ReactDOM.render(( + ReactDOM.render(( @@ -29,5 +29,4 @@ if(container) { ), container); - window.mailpoet_listing = mailpoet_listing; }