Skip to content

Commit

Permalink
fix: Fix fixversion description tag
Browse files Browse the repository at this point in the history
There's an error: description filed has structs:name, instead of structs:description
  • Loading branch information
biohedge authored and ghostsquad committed Jul 10, 2019
1 parent b59a65c commit 8383e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ type FixVersion struct {
Self string `json:"self,omitempty" structs:"self,omitempty"`
ID string `json:"id,omitempty" structs:"id,omitempty"`
Name string `json:"name,omitempty" structs:"name,omitempty"`
Description string `json:"description,omitempty" structs:"name,omitempty"`
Description string `json:"description,omitempty" structs:"description,omitempty"`
Archived *bool `json:"archived,omitempty" structs:"archived,omitempty"`
Released *bool `json:"released,omitempty" structs:"released,omitempty"`
ReleaseDate string `json:"releaseDate,omitempty" structs:"releaseDate,omitempty"`
Expand Down

0 comments on commit 8383e2f

Please sign in to comment.