We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e3aa31 commit 102cfdbCopy full SHA for 102cfdb
command/issue.go
@@ -23,7 +23,6 @@ import (
23
func init() {
24
RootCmd.AddCommand(issueCmd)
25
issueCmd.AddCommand(issueStatusCmd)
26
- issueCmd.AddCommand(issueViewCmd)
27
28
issueCmd.AddCommand(issueCreateCmd)
29
issueCreateCmd.Flags().StringP("title", "t", "",
@@ -39,6 +38,7 @@ func init() {
39
38
issueListCmd.Flags().IntP("limit", "L", 30, "Maximum number of issues to fetch")
40
issueListCmd.Flags().StringP("author", "A", "", "Filter by author")
41
+ issueCmd.AddCommand(issueViewCmd)
42
issueViewCmd.Flags().BoolP("preview", "p", false, "Display preview of issue content")
43
}
44
0 commit comments