mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(editor): Fix TypeScript issues in template code (no-changelog) (#9574)
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
import { onMounted, onBeforeUnmount, ref, computed, watch } from 'vue';
|
||||
import { useI18n } from '@/composables/useI18n';
|
||||
import { useToast } from '@/composables/useToast';
|
||||
import type { IWorkflowDb } from '@/Interface';
|
||||
import type { IWorkflowDb, IWorkflowTemplate } from '@/Interface';
|
||||
import { useRootStore } from '@/stores/n8nRoot.store';
|
||||
import { useExecutionsStore } from '@/stores/executions.store';
|
||||
|
||||
@@ -34,7 +34,7 @@ const props = withDefaults(
|
||||
defineProps<{
|
||||
loading?: boolean;
|
||||
mode?: 'workflow' | 'execution';
|
||||
workflow?: IWorkflowDb;
|
||||
workflow?: IWorkflowDb | IWorkflowTemplate['workflow'];
|
||||
executionId?: string;
|
||||
executionMode?: string;
|
||||
loaderType?: 'image' | 'spinner';
|
||||
|
||||
Reference in New Issue
Block a user