TRIVIAL: Was rendering "null" into the upgrade log area before you

started.
This commit is contained in:
Robin Ward 2014-05-05 12:56:44 -04:00
parent 2ddbdac757
commit 7b088ab770
2 changed files with 6 additions and 2 deletions

View File

@ -39,7 +39,9 @@ define("docker-manager/components/x-console",
classNameBindings: [':logs'],
render: function(buffer) {
buffer.push(this.get('output'));
if (!Em.isEmpty(this.get('output'))) {
buffer.push(this.get('output'));
}
},
_outputChanged: function() {

View File

@ -2,7 +2,9 @@ export default Em.Component.extend({
classNameBindings: [':logs'],
render: function(buffer) {
buffer.push(this.get('output'));
if (!Em.isEmpty(this.get('output'))) {
buffer.push(this.get('output'));
}
},
_outputChanged: function() {