From c875d40e631f83507b602807480be96dae05fc85 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 1 Aug 2018 02:15:40 +0200 Subject: termui: add a view to display a bug --- bug/comment.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bug/comment.go') diff --git a/bug/comment.go b/bug/comment.go index 9cc38738..c0c07076 100644 --- a/bug/comment.go +++ b/bug/comment.go @@ -6,8 +6,8 @@ import ( ) type Comment struct { - Author Person `json:"author"` - Message string `json:"message"` + Author Person + Message string // Creation time of the comment. // Should be used only for human display, never for ordering as we can't rely on it in a distributed system. -- cgit