From 93b111af93970b458068a85c4231821a5b258d73 Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Mon, 6 May 2024 16:48:38 +0200 Subject: [PATCH] fix handleSystemError is not a function --- public/js/components/Studierendenantrag/Leitung/Actions/New.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }); } },