Fix TypeScript and ESLint errors, resolve component imports

- Fix TypeScript types in trigger-helpers with proper interfaces
- Remove all ESLint no-explicit-any warnings with better typing
- Fix component import paths from @/components/* to relative paths
- Regenerate import map with correct component references
- All compilation and linting errors resolved
This commit is contained in:
2025-09-09 10:13:00 +02:00
parent 3e9ff10076
commit 2bc01f30f8
7 changed files with 335 additions and 82 deletions

View File

@@ -41,7 +41,7 @@ export const createWorkflowCollection: <T extends string>(options: WorkflowsPlug
type: 'ui',
admin: {
components: {
Field: '@/components/WorkflowExecutionStatus'
Field: '../components/WorkflowExecutionStatus'
},
condition: (data) => !!data?.id // Only show for existing workflows
}