diff --git a/public/js/components/Studierendenantrag/Leitung/Actions/New.js b/public/js/components/Studierendenantrag/Leitung/Actions/New.js index b566a7d10..e9152febe 100644 --- a/public/js/components/Studierendenantrag/Leitung/Actions/New.js +++ b/public/js/components/Studierendenantrag/Leitung/Actions/New.js @@ -51,6 +51,7 @@ export default { .studstatus.leitung.getPrestudents(evt.query, this.abortController.signal) .then(result => { this.data = result.data; + this.abortController = null; }) .catch(error => { if (this.abortController instanceof AbortController @@ -58,7 +59,7 @@ export default { { this.abortController.abort(); } - this.$fhcApi.handleSystemError(error); + this.$fhcAlert.handleSystemError(error); }); } },