Skip to content

Commit

Permalink
Fix default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Virtlink committed Jul 31, 2024
1 parent af74d42 commit 13f29ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ data class GithubIssueTemplates(
/** The state label to apply to new bugs; or `null` to not apply a label. */
val bugStateLabel: String? = "needs-triage",
/** The state label to apply to new feature requests; or `null` to not apply a label. */
val featureRequestStateLabel: String? = null,
val featureRequestStateLabel: String? = "needs-triage",
/** The state label to apply to new questions; or `null` to not apply a label. */
val questionStateLabel: String? = null,
)
Expand Down

0 comments on commit 13f29ed

Please sign in to comment.