fix(editor): Remove "move" action from workflow and credential on community plan (#10057)

This commit is contained in:
Csaba Tuncsik
2024-07-18 15:34:39 +02:00
committed by GitHub
parent f876f9ec8b
commit 5a9a2713b4
7 changed files with 79 additions and 15 deletions

View File

@@ -58,12 +58,11 @@ export function useDebugInfo() {
: store.databaseType,
executionMode: store.isQueueModeEnabled ? 'scaling' : 'regular',
concurrency: store.settings.concurrency,
license:
store.planName === 'Community'
? (store.planName.toLowerCase() as 'community')
: store.settings.license.environment === 'production'
? 'enterprise (production)'
: 'enterprise (sandbox)',
license: store.isCommunityPlan
? 'community'
: store.settings.license.environment === 'production'
? 'enterprise (production)'
: 'enterprise (sandbox)',
consumerId: store.consumerId,
} as const;
};