From e456abcc8c0dd6a5870804a87c174235a74b79fb Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 28 Oct 2019 19:47:41 +0000 Subject: [PATCH] List label description (#60) --- .gitignore | 1 + cmd/labels.go | 2 ++ 2 files changed, 3 insertions(+) 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, }, ) }