Skip to content

Commit

Permalink
Merge pull request #486 from wmde/fix-city-autocomplete-prop
Browse files Browse the repository at this point in the history
Fix missing prop in city autocomplete
  • Loading branch information
moiikana authored Sep 4, 2024
2 parents 51d36d5 + 61e988c commit 74fde6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
<CityAutocompleteField
v-model="formData.city.value"
input-id="city"
scroll-target-id="city-scroll-target"
:show-error="showError.city"
:label="$t( 'donation_form_city_label' )"
:error-message="$t( 'donation_form_city_error' )"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
<CityAutocompleteField
v-model="formData.city.value"
:input-id="`${fieldIdNamespace}city`"
:scroll-target-id="`${fieldIdNamespace}city-scroll-target`"
:show-error="showError.city"
:label="$t( 'donation_form_city_label' )"
:error-message="$t( 'donation_form_city_error' )"
Expand Down
1 change: 1 addition & 0 deletions src/components/shared/PostalAddressFields.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<CityAutocompleteField
v-model="formData.city.value"
:input-id="`${fieldIdNamespace}city`"
:scroll-target-id="`${fieldIdNamespace}city-scroll-target`"
:show-error="showError.city"
:label="$t( 'donation_form_city_label' )"
:error-message="$t( 'donation_form_city_error' )"
Expand Down

0 comments on commit 74fde6c

Please sign in to comment.