mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
List label description (#60)
This commit is contained in:
parent
651ba2aba4
commit
e456abcc8c
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
tea
|
tea
|
||||||
.idea/
|
.idea/
|
||||||
|
.history/
|
@ -43,6 +43,7 @@ func runLabels(ctx *cli.Context) error {
|
|||||||
"Index",
|
"Index",
|
||||||
"Color",
|
"Color",
|
||||||
"Name",
|
"Name",
|
||||||
|
"Description",
|
||||||
}
|
}
|
||||||
|
|
||||||
var values [][]string
|
var values [][]string
|
||||||
@ -76,6 +77,7 @@ func runLabels(ctx *cli.Context) error {
|
|||||||
strconv.FormatInt(label.ID, 10),
|
strconv.FormatInt(label.ID, 10),
|
||||||
label.Color,
|
label.Color,
|
||||||
label.Name,
|
label.Name,
|
||||||
|
label.Description,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user