fix problem with vanishing factory entries when called via Form.js computed factory

This commit is contained in:
Harald Bamberger
2025-02-07 11:46:02 +01:00
parent 3db367b255
commit acc57bbebd
@@ -298,7 +298,7 @@ export default{
this.abortController.places = new AbortController();
return this.$refs.addressData.factory.stv.kontakt.getPlaces(this.addressData.address.plz)
return this.$fhcApi.factory.stv.kontakt.getPlaces(this.addressData.address.plz)
.then(result => {
this.places = result.data;
});
@@ -310,7 +310,7 @@ export default{
this.abortController.firmen = new AbortController();
return this.$refs.addressData.factory.stv.kontakt.getFirmen(event.query)
return this.$fhcApi.factory.stv.kontakt.getFirmen(event.query)
.then(result => {
this.filteredFirmen = result.data.retval;
});