aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/store.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-06-17 16:52:46 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-06-17 16:52:46 +0200
commit2887eee3935e75640fc45111a904e78496dab62e (patch)
tree5ecd66727b8056f62771e20bb42fca9cfde1745c /src/features/workspaces/store.js
parentMerge branch 'feature/3rd-party-limit' into feature/new-pricing (diff)
downloadferdium-app-2887eee3935e75640fc45111a904e78496dab62e.tar.gz
ferdium-app-2887eee3935e75640fc45111a904e78496dab62e.tar.zst
ferdium-app-2887eee3935e75640fc45111a904e78496dab62e.zip
Rename feature flags
Diffstat (limited to 'src/features/workspaces/store.js')
-rw-r--r--src/features/workspaces/store.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/features/workspaces/store.js b/src/features/workspaces/store.js
index 07b16ff23..e1adc9cab 100644
--- a/src/features/workspaces/store.js
+++ b/src/features/workspaces/store.js
@@ -251,9 +251,9 @@ export default class WorkspacesStore extends FeatureStore {
251 _setIsPremiumFeatureReaction = () => { 251 _setIsPremiumFeatureReaction = () => {
252 const { features, user } = this.stores; 252 const { features, user } = this.stores;
253 const { isPremium } = user.data; 253 const { isPremium } = user.data;
254 const { isWorkspacePremiumFeature } = features.features; 254 const { isWorkspaceIncludedInCurrentPlan } = features.features;
255 this.isPremiumFeature = isWorkspacePremiumFeature; 255 this.isPremiumFeature = isWorkspaceIncludedInCurrentPlan;
256 this.isPremiumUpgradeRequired = isWorkspacePremiumFeature && !isPremium; 256 this.isPremiumUpgradeRequired = isWorkspaceIncludedInCurrentPlan && !isPremium;
257 }; 257 };
258 258
259 _setWorkspaceBeingEditedReaction = () => { 259 _setWorkspaceBeingEditedReaction = () => {