Merge branch 'master' into calendar/my-calendar-fixes-with-ts

This commit is contained in:
2022-06-28 10:33:00 +02:00
21 changed files with 1849 additions and 73 deletions

View File

@@ -121,7 +121,9 @@ export default {
this.entity.selected.city = value;
this.entity.selected.postcode.name = value.name;
this.entity.selected.postcode.code = value.code;
this.entity.selected.postcode.coordinates = value.center.coordinates;
if (value.center) {
this.entity.selected.postcode.coordinates = value.center.coordinates;
}
this.entity.selected.writeNew.postcode = false;
this.$emit('getReferenceAddresses', value);
this.focusOnAddress();