mirror of https://github.com/rancher/ui.git
Fix display of new sidekick (rancher/rancher#2455)
This commit is contained in:
parent
369c653084
commit
63d1ed78a3
|
|
@ -50,7 +50,11 @@ export default Ember.Component.extend(NewOrEdit, SelectTab, {
|
|||
stdinOpen: true,
|
||||
restartPolicy: {name: 'always'},
|
||||
}));
|
||||
this.send('selectLaunchConfig', ary.get('length')-1);
|
||||
|
||||
// Wait for it to be added to the DOM...
|
||||
Ember.run.next(() => {
|
||||
this.send('selectLaunchConfig', ary.get('length')-1);
|
||||
});
|
||||
},
|
||||
|
||||
removeSidekick() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue