(table *tview.Table)
| 61 | } |
| 62 | |
| 63 | func jumpTableBottom(table *tview.Table) { |
| 64 | if table == nil { |
| 65 | return |
| 66 | } |
| 67 | rows := table.GetRowCount() |
| 68 | if rows <= 1 { |
| 69 | table.Select(0, 0) |
| 70 | return |
| 71 | } |
| 72 | table.Select(rows-1, 0) |
| 73 | } |
no test coverage detected