Skip to content

Commit

Permalink
bs4 fix benefits household income input (#4230)
Browse files Browse the repository at this point in the history
remove redundant for, fix id so js can listen to post
  • Loading branch information
charlienparker authored and kristinmerbach committed Sep 4, 2024
1 parent bb0fe44 commit 92d90d3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,12 @@
<fieldset>
<legend class="weight-n instruction-row"><%=l10n("faa.household_income_changed")%></legend>
<div class="focus d-flex mt-3">
<label class="radio mr-3" for="has_household_income_changed_yes">
<input id="has_household_income_changed_yes" type="radio" value="true" name="has_household_income_changed" <%='checked' if @applicant.has_household_income_changed? %>>
<label class="radio mr-3">
<input id="has_household_income_changed_true" type="radio" value="true" name="has_household_income_changed" <%='checked' if @applicant.has_household_income_changed? %>>
<span><%= l10n("yes") %></span>
</label>
<label class="radio mr-3" for="has_household_income_changed_no">
<input id="has_household_income_changed_no" type="radio" value="false" name="has_household_income_changed" <%='checked'if @applicant.has_household_income_changed == false %>>
<label class="radio mr-3">
<input id="has_household_income_changed_false" type="radio" value="false" name="has_household_income_changed" <%='checked'if @applicant.has_household_income_changed == false %>>
<span><%= l10n("no") %></span>
</label>
</div>
Expand Down

0 comments on commit 92d90d3

Please sign in to comment.