diff --git a/.gitignore b/.gitignore index 29e86fd4..93e06f55 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 2bab87a1..b8ca81f2 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, }, ) }