TRIVIAL: Was rendering "null" into the upgrade log area before you
started.
This commit is contained in:
parent
2ddbdac757
commit
7b088ab770
|
|
@ -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() {
|
||||
|
|
|
|||
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue