mirror of https://github.com/status-im/consul.git
Merge pull request #330 from sequenceiq/fix-forbidden-kv-ui
Change default token to empty string instead of undefined
This commit is contained in:
commit
ae463fad8a
|
@ -501,6 +501,7 @@ App.SettingsController = Ember.ObjectController.extend({
|
|||
if (window.confirm("Are your sure you want to reset your settings?")) {
|
||||
localStorage.clear();
|
||||
controller.set('content', App.Settings.create());
|
||||
App.set('settings.token', '');
|
||||
notify('Settings reset', 3000);
|
||||
this.set('isLoading', false);
|
||||
}
|
||||
|
|
|
@ -8,6 +8,7 @@ Ember.Application.initializer({
|
|||
|
||||
initialize: function(container, application) {
|
||||
application.set('settings', App.Settings.create());
|
||||
App.set('settings.token', '');
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue