Skip to content

Commit 275f930

Browse files
Update github/projects.go
Co-authored-by: Oleksandr Redko <[email protected]>
1 parent 3dd69be commit 275f930

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

github/projects.go

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,14 @@ type ListProjectsOptions struct {
5050
//
5151
// GitHub API docs: https://docs.github.com/rest/projects/fields
5252
type ProjectV2FieldOption struct {
53-
ID string `json:"id,omitempty"` // The unique identifier for this option.
54-
Name string `json:"name,omitempty"` // The display name of the option.
55-
Color string `json:"color,omitempty"` // The color associated with this option (e.g., "blue", "red").
56-
Description string `json:"description,omitempty"` // An optional description for this option.
53+
// The unique identifier for this option.
54+
ID string `json:"id,omitempty"`
55+
// The display name of the option.
56+
Name string `json:"name,omitempty"`
57+
// The color associated with this option (e.g., "blue", "red").
58+
Color string `json:"color,omitempty"`
59+
// An optional description for this option.
60+
Description string `json:"description,omitempty"`
5761
}
5862

5963
// ProjectV2Field represents a field in a GitHub Projects V2 project.

0 commit comments

Comments
 (0)