-
-
Notifications
You must be signed in to change notification settings - Fork 136
chore: switch to fillable checkboxes for issue templates #6795
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,12 +7,18 @@ body: | |
| attributes: | ||
| value: | | ||
| Thanks for taking the time to report a bug! Please fill out the information below to help us investigate. | ||
|
|
||
| **Before submitting**, please check: | ||
| - [ ] I've searched [existing issues](https://github.com/thomhurst/TUnit/issues) to ensure this isn't a duplicate | ||
| - [ ] I've read the [documentation](https://tunit.dev/) and this isn't expected behavior | ||
| - [ ] I'm using the latest version of TUnit | ||
|
|
||
| - type: checkboxes | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When GitHub loads either issue template, every non-Markdown body element must have a unique Useful? React with 👍 / 👎. |
||
| id: bug-checklist | ||
| attributes: | ||
| label: Bug report checklist | ||
| description: Before submitting, please check | ||
| options: | ||
| - label: I've searched [existing issues](https://github.com/thomhurst/TUnit/issues) to ensure this isn't a duplicate | ||
| required: true | ||
| - label: I've read the [documentation](https://tunit.dev/) and this isn't expected behavior | ||
| required: true | ||
| - label: I'm using the latest version of TUnit | ||
| required: true | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new checkbox group does not declare the required unique
id, so GitHub can reject the issue form instead of showing the mandatory checklist. The feature-request template has the same omission. Add unique IDs to both groups, as the existing checkbox controls already do.