Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ For example, the following form definition includes four form elements: a text a
options:
- label: I agree to follow this project's [Code of Conduct](link/to/coc)
required: true
validations:
required: true
Comment on lines +53 to +54
Copy link

Copilot AI Nov 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The checkbox already has required: true at the item level (line 52). Adding a top-level validations.required may be redundant or confusing. Clarify whether both are needed or if one should be removed to avoid duplication.

Suggested change
validations:
required: true

Copilot uses AI. Check for mistakes.
- type: markdown
attributes:
value: "Thanks for completing our form!"
Expand Down Expand Up @@ -266,6 +268,8 @@ body:
- label: macOS
- label: Windows
- label: Linux
validations:
required: true
```

## Further reading
Expand Down
Loading