From 464742c9ba2e58dd2c01073de8020531970f2dbd Mon Sep 17 00:00:00 2001 From: Cory Bennett Date: Wed, 13 Dec 2017 11:09:25 -0800 Subject: [PATCH] field name is "comment" not "comments" --- jiracmd/edit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jiracmd/edit.go b/jiracmd/edit.go index 1310902..1888813 100644 --- a/jiracmd/edit.go +++ b/jiracmd/edit.go @@ -37,7 +37,7 @@ func CmdEditRegistry() *jiracli.CommandRegistryEntry { }, func(o *oreo.Client, globals *jiracli.GlobalOptions) error { if opts.QueryFields == "" { - opts.QueryFields = "assignee,created,priority,reporter,status,summary,updated,issuetype,comments,description,votes,created,customfield_10110,components" + opts.QueryFields = "assignee,created,priority,reporter,status,summary,updated,issuetype,comment,description,votes,created,customfield_10110,components" } return CmdEdit(o, globals, &opts) },