perf: refs #7679 #7679 comments
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-09-27 19:54:01 +02:00
parent e06d567e3c
commit bec50d6eed
2 changed files with 0 additions and 2 deletions

View File

@ -70,7 +70,6 @@ async function setProvince(id, data) {
data.countryFk = newProvince.countryFk; data.countryFk = newProvince.countryFk;
} }
// Watchers to update filters based on country and province changes
watch( watch(
() => [postcodeFormData.countryFk], () => [postcodeFormData.countryFk],
async (newCountryFk) => { async (newCountryFk) => {

View File

@ -13,7 +13,6 @@ watch(provinceFk, async () => await provincesFetchDataRef.value.fetch());
const $props = defineProps({ const $props = defineProps({
countryFk: { countryFk: {
type: Number, type: Number,
required: false,
default: null, default: null,
}, },
}); });