Skip to content

Commit

Permalink
Merge pull request #1647 from bc-nataliya/STRF-5678
Browse files Browse the repository at this point in the history
fix(storefront): STRF-5678 fixed the check for max length in create account fields
  • Loading branch information
junedkazi authored Mar 12, 2020
2 parents 97a00f9 + 1f2efbe commit dbadd2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/components/common/forms/text.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<label class="form-label" for="{{id}}_input">{{label}}
{{#if required}}<small>{{lang 'common.required' }}</small>{{/if}}
</label>
<input type="text" id="{{id}}_input" data-label="{{label}}" name="{{name}}" {{#if value}} value="{{value}}"{{/if}} {{#if placeholder}} placeholder="{{placeholder}}"{{/if}} class="form-input" aria-required="{{required}}" {{#if private_id}}data-field-type="{{private_id}}"{{/if}}>
<input type="text" id="{{id}}_input" data-label="{{label}}" name="{{name}}" {{#if value}} value="{{value}}"{{/if}} {{#if placeholder}} placeholder="{{placeholder}}"{{/if}} class="form-input" aria-required="{{required}}" {{#if private_id}}data-field-type="{{private_id}}"{{/if}} {{#if maxlength}}maxlength="{{maxlength}}"{{/if}}>
</div>

0 comments on commit dbadd2d

Please sign in to comment.