From 9aa8c33e833fd7c196f3a63b94280b8a9b300695 Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Mon, 3 Mar 2025 15:26:54 +0100 Subject: [PATCH] fix use of confirm dialog with rewritten factory calls --- .../js/components/Stv/Studentenverwaltung/Details/Konto/New.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/components/Stv/Studentenverwaltung/Details/Konto/New.js b/public/js/components/Stv/Studentenverwaltung/Details/Konto/New.js index e7f619134..1b22310ba 100644 --- a/public/js/components/Stv/Studentenverwaltung/Details/Konto/New.js +++ b/public/js/components/Stv/Studentenverwaltung/Details/Konto/New.js @@ -68,7 +68,7 @@ export default { ) : Promise.resolve()) .then(() => data) - .then(this.$fhcApi.factory.stv.konto.insert(this.$refs.form)) + .then((data) => this.$fhcApi.factory.stv.konto.insert(this.$refs.form, data)) .then(result => { this.$emit('saved', result.data); this.loading = false;