mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat(editor): Refactor and unify executions views (no-changelog) (#8538)
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
export type ExecutionStatus =
|
||||
| 'canceled'
|
||||
| 'crashed'
|
||||
| 'error'
|
||||
| 'new'
|
||||
| 'running'
|
||||
| 'success'
|
||||
| 'unknown'
|
||||
| 'waiting'
|
||||
| 'warning';
|
||||
export const ExecutionStatusList = [
|
||||
'canceled' as const,
|
||||
'crashed' as const,
|
||||
'error' as const,
|
||||
'new' as const,
|
||||
'running' as const,
|
||||
'success' as const,
|
||||
'unknown' as const,
|
||||
'waiting' as const,
|
||||
'warning' as const,
|
||||
];
|
||||
|
||||
export type ExecutionStatus = (typeof ExecutionStatusList)[number];
|
||||
|
||||
Reference in New Issue
Block a user