|
@@ -163,7 +163,9 @@ App.MainAdminStackAndUpgradeController = Em.Controller.extend(App.LocalStorage,
|
|
initDBProperties: function () {
|
|
initDBProperties: function () {
|
|
var props = this.getDBProperties(this.get('wizardStorageProperties'));
|
|
var props = this.getDBProperties(this.get('wizardStorageProperties'));
|
|
Em.keys(props).forEach(function (k) {
|
|
Em.keys(props).forEach(function (k) {
|
|
- this.set(k, props[k]);
|
|
|
|
|
|
+ if (props[k]) {
|
|
|
|
+ this.set(k, props[k]);
|
|
|
|
+ }
|
|
}, this);
|
|
}, this);
|
|
},
|
|
},
|
|
|
|
|