LaunchCodeEducation / csharp-web-dev-curriculum

Hugo version of C# Unit 2
http://education.launchcode.org/csharp-web-dev-curriculum/
1 stars 5 forks source link

GA3 Starter Code Views/Search/Index.cshtml checked attribute non-functional #87

Open matthewcreek opened 2 months ago

matthewcreek commented 2 months ago

Relevant Link

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")" />