Clear clears the tasks list.
()
| 152 | |
| 153 | // Clear clears the tasks list. |
| 154 | func (tl *TasksList) Clear() *tview.Table { |
| 155 | tl.historyTable.Clear() |
| 156 | tl.historyTable.SetCell(0, 0, tl.noTasksCell()) |
| 157 | return tl.historyTable |
| 158 | } |
| 159 | |
| 160 | // Refresh updates active tasks from TaskManager. |
| 161 | func (tl *TasksList) Refresh() { |
nothing calls this directly
no test coverage detected