fix bogus logic error

This commit is contained in:
Cory Bennett
2017-08-31 22:58:26 -07:00
parent 36c26c523a
commit 560998253d
+1 -1
View File
@@ -29,7 +29,7 @@ func CmdTransitionRegistry(fig *figtree.FigTree, o *oreo.Client, transition stri
} }
help := "Transition issue to given state" help := "Transition issue to given state"
if transition == "" { if transition != "" {
help = fmt.Sprintf("Transition issue to %s state", transition) help = fmt.Sprintf("Transition issue to %s state", transition)
opts.SkipEditing = figtree.NewBoolOption(true) opts.SkipEditing = figtree.NewBoolOption(true)
} }