improved error message

This commit is contained in:
cgfhtw
2024-08-12 09:44:12 +02:00
parent 781b4b31cd
commit 0a150a60bb
@@ -141,7 +141,8 @@ export default {
.allSettled(
this.prestudentIds.map(prestudent_id => this.$fhcApi.post(
'api/frontend/v1/stv/status/addStudent/' + prestudent_id,
data
data,
{ errorHeader: prestudent_id }
))
)
.then(this.showFeedback);
@@ -223,7 +224,8 @@ export default {
.allSettled(
this.prestudentIds.map(prestudent_id => this.$fhcApi.post(
'api/frontend/v1/stv/status/changeStatus/' + prestudent_id,
data
data,
{ errorHeader: prestudent_id }
))
)
.then(this.showFeedback);