TasksList encapsulates the tasks list panel.
| 16 | |
| 17 | // TasksList encapsulates the tasks list panel. |
| 18 | type TasksList struct { |
| 19 | *tview.Flex |
| 20 | |
| 21 | activeTable *tview.Table |
| 22 | historyTable *tview.Table |
| 23 | showActive bool |
| 24 | |
| 25 | tasks []*api.ClusterTask |
| 26 | app *App |
| 27 | } |
| 28 | |
| 29 | var _ TasksListComponent = (*TasksList)(nil) |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected