Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,18 @@ body:
id: version
attributes:
label: Version
description: What version of MetaMask are you running? You can find the version in "Settings" > "About"
description: What version of MetaMask are you running? You can find the version in "Settings" > "About MetaMask"
placeholder: "7.50.0"
validations:
required: true
- type: input
id: build number
Copy link

Choose a reason for hiding this comment

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

Bug: Build number field id uses space instead of hyphen

The id field for the new build number input uses build number with a space, breaking the established convention in this template. Other multi-word field IDs use hyphens (e.g., what-happened, expected-behavior, screenshot-recording). The field id should be build-number to maintain consistency and avoid potential issues with GitHub's form processing, which typically treats identifiers with spaces as problematic.

Fix in Cursor Fix in Web

attributes:
label: Build number
description: What build number of MetaMask are you running? You can find the build number in "Settings" > "About MetaMask"
placeholder: "3055"
validations:
required: true
- type: dropdown
id: build
attributes:
Expand Down
Loading