add heavy loggin
This commit is contained in:
@@ -6,7 +6,7 @@ import '@vue-flow/core/dist/theme-default.css'
|
||||
|
||||
export interface GraphNode {
|
||||
id: string
|
||||
status: 'pending' | 'running' | 'done' | 'error'
|
||||
status: 'pending' | 'running' | 'done' | 'error' | 'skipped'
|
||||
}
|
||||
|
||||
const props = defineProps<{
|
||||
@@ -29,6 +29,7 @@ const statusColors: Record<string, string> = {
|
||||
running: 'var(--status-processing)',
|
||||
done: 'var(--status-live)',
|
||||
error: 'var(--status-error)',
|
||||
skipped: '#4a6fa5',
|
||||
}
|
||||
|
||||
const flowNodes = computed(() =>
|
||||
|
||||
Reference in New Issue
Block a user