diff --git a/.gitignore b/.gitignore index 29e86fd..93e06f5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ tea .idea/ +.history/ \ No newline at end of file diff --git a/cmd/labels.go b/cmd/labels.go index 2bab87a..b8ca81f 100644 --- a/cmd/labels.go +++ b/cmd/labels.go @@ -43,6 +43,7 @@ func runLabels(ctx *cli.Context) error { "Index", "Color", "Name", + "Description", } var values [][]string @@ -76,6 +77,7 @@ func runLabels(ctx *cli.Context) error { strconv.FormatInt(label.ID, 10), label.Color, label.Name, + label.Description, }, ) }