From e38445d04ae9da6121877f7094f976901d0935a9 Mon Sep 17 00:00:00 2001 From: Sriram Thiagarajan Date: Wed, 26 Apr 2017 18:36:53 +0530 Subject: [PATCH] fixed error formatting in live editor (#9497) (cherry picked from commit 7ccfb0733716be809e189b53682289d6cfb34a20) --- docs/_js/live_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_js/live_editor.js b/docs/_js/live_editor.js index 134cae5b86..9f1952aeb6 100644 --- a/docs/_js/live_editor.js +++ b/docs/_js/live_editor.js @@ -221,7 +221,7 @@ var ReactPlayground = React.createClass({ } catch (err) { this.setTimeout(function() { ReactDOM.render( -
{err.toString()}
, +
{err.toString()}
, mountNode ); }, 500);