@@ -83,7 +83,7 @@ func runShow(env *Env, opts showOptions, args []string) error {
8383 case "shortId" :
8484 env .out .Printf ("%s\n " , snap .Id ().Human ())
8585 case "status" :
86- env .out .Printf ("%s\n " , snap .Status )
86+ env .out .Printf ("%s\n " , snap .Status () )
8787 case "title" :
8888 env .out .Printf ("%s\n " , snap .Title ())
8989 default :
@@ -109,7 +109,7 @@ func showDefaultFormatter(env *Env, snapshot *bug.Snapshot) error {
109109 // Header
110110 env .out .Printf ("%s [%s] %s\n \n " ,
111111 colors .Cyan (snapshot .Id ().Human ()),
112- colors .Yellow (snapshot .Status ),
112+ colors .Yellow (snapshot .Status () ),
113113 snapshot .Title (),
114114 )
115115
@@ -216,7 +216,7 @@ func showJsonFormatter(env *Env, snapshot *bug.Snapshot) error {
216216 HumanId : snapshot .Id ().Human (),
217217 CreateTime : NewJSONTime (snapshot .CreateTime , 0 ),
218218 EditTime : NewJSONTime (snapshot .EditTime (), 0 ),
219- Status : snapshot .Status .String (),
219+ Status : snapshot .Status () .String (),
220220 Labels : snapshot .Labels ,
221221 Title : snapshot .Title (),
222222 Author : NewJSONIdentity (snapshot .Author ),
@@ -247,7 +247,7 @@ func showOrgModeFormatter(env *Env, snapshot *bug.Snapshot) error {
247247 // Header
248248 env .out .Printf ("%s [%s] %s\n " ,
249249 snapshot .Id ().Human (),
250- snapshot .Status ,
250+ snapshot .Status () ,
251251 snapshot .Title (),
252252 )
253253
0 commit comments