fix handleSystemError is not a function

This commit is contained in:
Harald Bamberger
2024-05-06 16:48:38 +02:00
parent 6a8a96b748
commit 93b111af93
@@ -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);
});
}
},