refactor: refs #6973 updated label and updated cypress test #275

Merged
jon merged 3 commits from 6973-UpdateVnLocationLabel into dev 2024-04-09 06:48:49 +00:00
1 changed files with 4 additions and 5 deletions
Showing only changes of commit b7788512bc - Show all commits

View File

@ -35,17 +35,16 @@ const onDataSaved = (formData) => {
const townObject = townsLocationOptions.value.find(
({id}) => id === formData.townFk
);
newPostcode.town = townObject ? townObject.name : undefined;
newPostcode.town = townObject?.name;
jon marked this conversation as resolved Outdated
Outdated
Review

Simplificar a:
newPostcode.town = townObject?.name

Y los otros ternarios que hay

Simplificar a: `newPostcode.town = townObject?.name` Y los otros ternarios que hay
const provinceObject = provincesOptions.value.find(
({id}) => id === formData.provinceFk
);
newPostcode.province = provinceObject ? provinceObject.name : undefined;
newPostcode.province = provinceObject?.name;
const countryObject = countriesOptions.value.find(
({id}) => id === formData.countryFk
);
newPostcode.country = countryObject ? countryObject.country : undefined;
emit('onDataSaved', newPostcode);
newPostcode.country = countryObject?.country;
emit('onDataSaved', newPostcode);
};
const onCityCreated = async ({ name, provinceFk }, formData) => {