diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-06 23:24:58 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-06 23:24:58 +0530 |
commit | 9a4a3696c7d5d51a796e2960d31f9ff7f2c1205d (patch) | |
tree | 786f63cb2592304340988ad869e9ce11ed7a4dae /ui | |
parent | 83a39dbebed42b9bd779d86b4fcf30a0f5348d87 (diff) |
removed useless seperator in table
Diffstat (limited to 'ui')
-rw-r--r-- | ui/list.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -46,10 +46,9 @@ func AnimeList(animes []a.Anime) { t.AppendRow([]interface{}{ index + 1, anime.Title, anime.Id, formattedScore, formattedMediaType, formattedStatus, progress, - }) + }) } - t.AppendSeparator() t.AppendFooter(table.Row{len(animes), "", "", ""}) t.Render() } @@ -75,10 +74,9 @@ func MangaList(mangas []m.Manga) { t.AppendRow([]interface{}{ index + 1, manga.Title, manga.Id, formattedScore, formattedMediaType, formattedStatus, chapterProgress, volumeProgress, - }) + }) } - t.AppendSeparator() t.AppendFooter(table.Row{len(mangas), "", "", ""}) t.Render() } |