mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
refactor(editor): Migrate ui.store to use composition API (no-changelog) (#9892)
This commit is contained in:
@@ -242,7 +242,7 @@ const activeNodeType = computed(() => {
|
||||
return null;
|
||||
});
|
||||
|
||||
const workflowRunning = computed(() => uiStore.isActionActive('workflowRunning'));
|
||||
const workflowRunning = computed(() => uiStore.isActionActive['workflowRunning']);
|
||||
|
||||
const showTriggerWaitingWarning = computed(
|
||||
() =>
|
||||
@@ -432,7 +432,7 @@ const featureRequestUrl = computed(() => {
|
||||
|
||||
const outputPanelEditMode = computed(() => ndvStore.outputPanelEditMode);
|
||||
|
||||
const isWorkflowRunning = computed(() => uiStore.isActionActive('workflowRunning'));
|
||||
const isWorkflowRunning = computed(() => uiStore.isActionActive['workflowRunning']);
|
||||
|
||||
const isExecutionWaitingForWebhook = computed(() => workflowsStore.executionWaitingForWebhook);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user