mirror of https://github.com/rancher/ui.git
Bug fixes
This commit is contained in:
parent
3cfbe97217
commit
12c5895b96
|
|
@ -51,7 +51,8 @@ export default Ember.Component.extend({
|
|||
|
||||
this.set('saving', true);
|
||||
|
||||
this.get('settings').setProperties(propsOut).one('settingsPromisesResolved', () => {
|
||||
this.get('settings').setProperties(propsOut);
|
||||
this.get('settings').one('settingsPromisesResolved', () => {
|
||||
this.set('saving', false);
|
||||
this.set('errors', null);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<div class="r-mt10">
|
||||
<label>{{radio-button selection=customRadio value="yes"}} Something else: </label>
|
||||
{{input type="text" class="form-control" value=customValue placeholder="e.g. {{if settings.isPrivateLabel 'domain.com' 'rancher.mydomain.com'}}" safeStyle="width: calc(100% - 150px); display: inline-block; min-width: 300px;"}}
|
||||
{{input type="text" class="form-control" value=customValue placeholder="e.g. http://example.com:8080" safeStyle="width: calc(100% - 150px); display: inline-block; min-width: 300px;"}}
|
||||
<h6 style="margin-top: 10px;">
|
||||
Don't include <code>/v1</code> or any other path, but if you are doing
|
||||
{{#if settings.isPrivateLabel}}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,8 @@ export default Ember.Component.extend({
|
|||
|
||||
this.set('saving', true);
|
||||
|
||||
this.get('settings').setProperties(propsOut).one('settingsPromisesResolved', () => {
|
||||
this.get('settings').setProperties(propsOut);
|
||||
this.get('settings').one('settingsPromisesResolved', () => {
|
||||
this.set('saving', false);
|
||||
this.set('errors', null);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue