Skip to content

Commit 6a3c1f2

Browse files
fix: Disable auto-filling of country name in tax popup (#5286)
* Disabled auto-filling of information during Tax Pop-up in wizard step-1 * replaced placeholder string by respective field name in autocomplete attribute * placeholder replaced by country in autocomplete attribute * changed the autocomplete attribute of input feilds * removed extra space from input attributes
1 parent 35d1d76 commit 6a3c1f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/templates/components/modals/tax-info-modal.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="field">
77
<label class="required">{{t 'Choose country'}}</label>
88
<UiDropdown @class="search selection" @selected={{this.tax.country}} @forceSelection={{false}} @fullTextSearch={{true}}>
9-
<Input @type="hidden" @autocomplete="no" @id="tax_country" @value={{this.tax.country}} />
9+
<Input @type="hidden" @autocomplete="tax-country" @id="tax_country" @value={{this.tax.country}} />
1010
<i class="dropdown icon"></i>
1111
<div class="default text">{{t 'Select country'}}</div>
1212
<div class="menu">

0 commit comments

Comments
 (0)