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'],
|
classNameBindings: [':logs'],
|
||||||
|
|
||||||
render: function(buffer) {
|
render: function(buffer) {
|
||||||
|
if (!Em.isEmpty(this.get('output'))) {
|
||||||
buffer.push(this.get('output'));
|
buffer.push(this.get('output'));
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_outputChanged: function() {
|
_outputChanged: function() {
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,9 @@ export default Em.Component.extend({
|
||||||
classNameBindings: [':logs'],
|
classNameBindings: [':logs'],
|
||||||
|
|
||||||
render: function(buffer) {
|
render: function(buffer) {
|
||||||
|
if (!Em.isEmpty(this.get('output'))) {
|
||||||
buffer.push(this.get('output'));
|
buffer.push(this.get('output'));
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_outputChanged: function() {
|
_outputChanged: function() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue