mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 16:02:15 +00:00
fix problem with vanishing factory entries when called via Form.js computed factory
This commit is contained in:
@@ -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;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user