From df5dd2581da5a181270dc27ae5cf7cdfa70bfb49 Mon Sep 17 00:00:00 2001 From: "Ronald A. Richardson" Date: Sun, 18 Aug 2024 15:25:22 +0800 Subject: [PATCH] fix save message translation for role --- addon/controllers/roles/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/controllers/roles/index.js b/addon/controllers/roles/index.js index a2cbdda..a03faa8 100644 --- a/addon/controllers/roles/index.js +++ b/addon/controllers/roles/index.js @@ -210,7 +210,7 @@ export default class RolesIndexController extends Controller { try { await role.save(); - this.notifications.success(this.intl.t('iam.roles.index.changes-role-save')); + this.notifications.success(this.intl.t('iam.roles.index.changes-role-saved')); return this.hostRouter.refresh(); } catch (error) { this.notifications.serverError(error);