WorkflowDetailsView displays details about a specific workflow and its recent runs
| 18 | |
| 19 | // WorkflowDetailsView displays details about a specific workflow and its recent runs |
| 20 | type WorkflowDetailsView struct { |
| 21 | lastFetch time.Time |
| 22 | table *TableWithStyleFunc |
| 23 | workflow *rest.Workflow |
| 24 | debugLogger *DebugLogger |
| 25 | workflowID string |
| 26 | tasks []rest.V1TaskSummary |
| 27 | BaseModel |
| 28 | currentOffset int64 |
| 29 | pageSize int64 |
| 30 | totalCount int |
| 31 | loading bool |
| 32 | showDebug bool |
| 33 | hasMore bool |
| 34 | } |
| 35 | |
| 36 | // workflowDetailsMsg contains the fetched workflow details |
| 37 | type workflowDetailsMsg struct { |
nothing calls this directly
no outgoing calls
no test coverage detected