Skip to content

Commit

Permalink
fix(FSADT1-863): trimming whitespace on address
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Sep 8, 2023
1 parent 6744845 commit b026d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/grouping/AddressGroupComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ watch([autoCompleteResult], () => {
watch([detailsData], () => {
if (detailsData.value) {
selectedValue.streetAddress = detailsData.value.streetAddress
selectedValue.streetAddress = detailsData.value.streetAddress.trim()
selectedValue.city = detailsData.value.city
selectedValue.province = detailsData.value.province
selectedValue.postalCode = detailsData.value.postalCode.replace(/\s/g, '')
Expand Down

0 comments on commit b026d22

Please sign in to comment.