diff --git a/modules/print/notification.go b/modules/print/notification.go index 723bc13..1d45530 100644 --- a/modules/print/notification.go +++ b/modules/print/notification.go @@ -14,6 +14,7 @@ import ( func NotificationsList(news []*gitea.NotificationThread, output string, showRepository bool) { headers := []string{ "Type", + "State", "Index", "Title", } @@ -38,7 +39,7 @@ func NotificationsList(news []*gitea.NotificationThread, output string, showRepo index = "#" + index } - item := []string{string(n.Subject.Type), index, n.Subject.Title} + item := []string{string(n.Subject.Type), string(n.Subject.State), index, n.Subject.Title} if showRepository { item = append(item, n.Repository.FullName) }