LaunchCodeEducation / LaunchCodeEducation/csharp-web-dev-curriculum
GA3 Starter Code Views/Search/Index.cshtml checked attribute non-functional
Nobody has claimed this yet.
- Dominant language
- HTML
- Stars
- 1
- Forks
- 5
- PR merge metrics
- No merged PRs in 30d
Description
Code as written:
<input type="radio" name="searchType" id="@column.Key" value="@column.Key" checked="@column.Key == 'all'" />
Does not function, radio button defaults to "Skill"
Suggested change:
<input type="radio" name="searchType" id="@column.Key" value="@column.Key" checked="@(column.Key == "all")" />
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Open TechJobsMVCAutograded6/Views/Search/Index.cshtml at the linked input and compare the checked expression with the suggested change. Verify that the Search view defaults the radio selection to “all” rather than “Skill”; no test command is mentioned.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- csharp
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100