From 7ededa5c1803fcb8691d790217e55cf464984df3 Mon Sep 17 00:00:00 2001 From: Cassie Tarakajian Date: Wed, 2 Nov 2016 22:41:10 -0400 Subject: [PATCH] #143 revert not printing to console if it is not expanded --- client/modules/IDE/components/Console.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/modules/IDE/components/Console.js b/client/modules/IDE/components/Console.js index e1401ed9..6f5973c8 100644 --- a/client/modules/IDE/components/Console.js +++ b/client/modules/IDE/components/Console.js @@ -37,9 +37,7 @@ class Console extends React.Component { this.appendConsoleEvent(consoleEvent); } }); - if (nextProps.isExpanded) { - this.appendConsoleEvent(consoleEvent); - } + this.appendConsoleEvent(consoleEvent); } }); }