mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)
This commit is contained in:
committed by
GitHub
parent
639afcd7a5
commit
68cff4c59e
@@ -21,8 +21,7 @@
|
||||
</template>
|
||||
<el-switch
|
||||
v-loading="updatingWorkflowActivation"
|
||||
:modelValue="workflowActive"
|
||||
@update:modelValue="activeChanged"
|
||||
:model-value="workflowActive"
|
||||
:title="
|
||||
workflowActive
|
||||
? $locale.baseText('workflowActivator.deactivateWorkflow')
|
||||
@@ -32,11 +31,12 @@
|
||||
:active-color="getActiveColor"
|
||||
inactive-color="#8899AA"
|
||||
data-test-id="workflow-activate-switch"
|
||||
@update:modelValue="activeChanged"
|
||||
>
|
||||
</el-switch>
|
||||
</n8n-tooltip>
|
||||
|
||||
<div class="could-not-be-started" v-if="couldNotBeStarted">
|
||||
<div v-if="couldNotBeStarted" class="could-not-be-started">
|
||||
<n8n-tooltip placement="top">
|
||||
<template #content>
|
||||
<div
|
||||
@@ -44,7 +44,7 @@
|
||||
v-html="$locale.baseText('workflowActivator.theWorkflowIsSetToBeActiveBut')"
|
||||
></div>
|
||||
</template>
|
||||
<font-awesome-icon @click="displayActivationError" icon="exclamation-triangle" />
|
||||
<font-awesome-icon icon="exclamation-triangle" @click="displayActivationError" />
|
||||
</n8n-tooltip>
|
||||
</div>
|
||||
</div>
|
||||
@@ -61,8 +61,8 @@ import { getActivatableTriggerNodes } from '@/utils/nodeTypesUtils';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'WorkflowActivator',
|
||||
props: ['workflowActive', 'workflowId'],
|
||||
mixins: [workflowActivate],
|
||||
props: ['workflowActive', 'workflowId'],
|
||||
setup(props, ctx) {
|
||||
return {
|
||||
...useToast(),
|
||||
|
||||
Reference in New Issue
Block a user