()
| 144 | } |
| 145 | |
| 146 | func (tl *TasksList) noTasksCell() *tview.TableCell { |
| 147 | return tview.NewTableCell("No tasks available"). |
| 148 | SetTextColor(theme.Colors.Warning). |
| 149 | SetAlign(tview.AlignCenter). |
| 150 | SetExpansion(1) |
| 151 | } |
| 152 | |
| 153 | // Clear clears the tasks list. |
| 154 | func (tl *TasksList) Clear() *tview.Table { |
no test coverage detected