1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00

(bug) notification is broken when updating payzen currency

This commit is contained in:
Sylvain 2023-04-05 09:48:28 +02:00
parent bb717336e6
commit 758827f231
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
- Italian language support (credits to https://crowdin.com/profile/olazzari)
- Improved error message on payzen misconfigured currency
- Improved reporting error messages in UI, from ruby exceptions
- Fix a bug: notification is broken when updating payzen currency
- Fix a bug: broken admin notifications if an order has been paid
- Fix a bug: unable to bulk update settings

View File

@ -549,7 +549,7 @@ Application.Controllers.controller('InvoicesController', ['$scope', '$state', 'I
* Callback triggered when the PayZen currency was successfully updated
*/
$scope.alertPayZenCurrencyUpdated = function (currency) {
growl.success(_t('app.admin.invoices.payment.payzen.currency_updated', { CURRENCY: currency }));
growl.success(_t('app.admin.invoices.payment.payzen_settings.currency_updated', { CURRENCY: currency }));
};
/**