mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
fix(editor): Fix various typecheck issues (no-changelog) (#8739)
This commit is contained in:
@@ -83,7 +83,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
import type { IExecutionsSummary } from '@/Interface';
|
||||
import type { ExecutionSummary } from '@/Interface';
|
||||
import type { IExecutionUIData } from '@/mixins/executionsHelpers';
|
||||
import { executionHelpers } from '@/mixins/executionsHelpers';
|
||||
import { VIEWS } from '@/constants';
|
||||
@@ -97,7 +97,7 @@ export default defineComponent({
|
||||
mixins: [executionHelpers],
|
||||
props: {
|
||||
execution: {
|
||||
type: Object as () => IExecutionsSummary,
|
||||
type: Object as () => ExecutionSummary,
|
||||
required: true,
|
||||
},
|
||||
highlight: {
|
||||
|
||||
Reference in New Issue
Block a user