From 5313addaeb54c2ce2f1689752e2d20fdddb6b16b Mon Sep 17 00:00:00 2001 From: Angel Garbarino Date: Wed, 2 Oct 2024 13:18:53 -0600 Subject: [PATCH] one small change to the default flash message --- ui/app/components/transformation-edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/components/transformation-edit.js b/ui/app/components/transformation-edit.js index df48859d3b66..56e2d73f16c8 100644 --- a/ui/app/components/transformation-edit.js +++ b/ui/app/components/transformation-edit.js @@ -76,7 +76,7 @@ export default TransformBase.extend({ // If an error was returned, check error type and show a message. const errorStatus = updateOrCreateResponse.errorStatus; if (errorStatus) { - let message = `The edits to this transformation were successful, but transformations for its roles was not edited due to a lack of permissions.`; + let message = `The edits to this transformation were successful, but transformations for the role ${record.id} were not edited due to a lack of permissions.`; if (errorStatus !== 403) { message = `You've edited the allowed_roles for this transformation. However, the corresponding edits to remove the role ${record.id}'s transformation was not made.`; }