Skip to content

Commit

Permalink
add class used for mask to zip field (#4262)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlienparker authored and bbodine1 committed Aug 20, 2024
1 parent 28df615 commit 45826d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/shared/_consumer_home_address_fields.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<div class="d-flex col-sm col-md-6 pr-0">
<div class="mr-auto col-sm col-md-6 pl-0">
<%= address.label :zip, l10n("zip_code"), class: "required" %>
<%= address.text_field :zip, class: "w-100 #{required}", required: required.present? || address.object.try(:zip), placeholder: l10n("zip_code"), data: { action: true ? 'change->zip-check#zipChange' : '', 'child-index': "#{address.index.to_s}" } %>
<%= address.text_field :zip, class: "w-100 #{required} zip", required: required.present? || address.object.try(:zip), placeholder: l10n("zip_code"), data: { action: true ? 'change->zip-check#zipChange' : '', 'child-index': "#{address.index.to_s}" } %>
</div>
<% if EnrollRegistry.feature_enabled?(:display_county) %>
<div id="county-select-<%= f.index %>" class="col-sm col-md-6 pr-0">
Expand Down

0 comments on commit 45826d3

Please sign in to comment.