BankData.js was trying to access a not existing phrase

This commit is contained in:
Paolo
2025-03-24 15:03:01 +01:00
parent 4a81561afd
commit 352b5ef9e3
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -6,7 +6,6 @@
'axios027' => true,
'bootstrap5' => true,
'fontawesome6' => true,
'phrases' => array(),
'primevue3' => true,
'customJSModules' => array('public/js/apps/Cis/BankData.js'),
'customCSSs' => array(
+1 -1
View File
@@ -38,7 +38,7 @@ export default {
this.$refs.form.factory.bankData.postBankData(this.bankName, this.bic, this.iban)
.then(result => {
this.$emit('saved', result.data);
this.$fhcAlert.alertSuccess(this.$p.t('ui/gespeichert'));
this.$fhcAlert.alertSuccess(this.$p.t('global', 'aenderungGespeichert'));
})
.catch(error => {
this.$fhcAlert.handleSystemError(error);