aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/FeaturesStore.js')
-rw-r--r--src/stores/FeaturesStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/FeaturesStore.js b/src/stores/FeaturesStore.js
index 0adee6adf..eb2b21af3 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -37,7 +37,7 @@ export default class FeaturesStore extends Store {
37 37
38 @computed get features() { 38 @computed get features() {
39 if (this.stores.user.isLoggedIn) { 39 if (this.stores.user.isLoggedIn) {
40 return this.featuresRequest.execute().result || DEFAULT_FEATURES_CONFIG; 40 return Object.assign({}, DEFAULT_FEATURES_CONFIG, this.featuresRequest.execute().result);
41 } 41 }
42 42
43 return DEFAULT_FEATURES_CONFIG; 43 return DEFAULT_FEATURES_CONFIG;