From d903c524f590055b3373d6a563d22f36f4d6d6ae Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 14 Mar 2024 17:24:53 +0000 Subject: [PATCH] Fix for 14924 - Unformatted help text toast message (#14990) Fix for 14924 - Unformatted help text is popped out when peers for intances are changed Co-authored-by: David O Neill --- awx/ui/src/screens/Instances/InstancePeers/InstancePeerList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/src/screens/Instances/InstancePeers/InstancePeerList.js b/awx/ui/src/screens/Instances/InstancePeers/InstancePeerList.js index 04b26656ec..a5489de1a2 100644 --- a/awx/ui/src/screens/Instances/InstancePeers/InstancePeerList.js +++ b/awx/ui/src/screens/Instances/InstancePeers/InstancePeerList.js @@ -191,7 +191,7 @@ function InstancePeerList({ setBreadcrumb }) { fetchPeers(); addToast({ id: instancesPeerToAssociate, - title: t`Peers update on ${instance.hostname}. Please be sure to run the install bundle for ${instance.hostname} again in order to see changes take effect.`, + title: t`Please be sure to run the install bundle for the selected instance(s) again in order to see changes take effect.`, variant: AlertVariant.success, hasTimeout: true, });