This is an automated email from the ASF dual-hosted git repository. ppawar pushed a commit to branch atlas-2.5 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit 4b60890daffcb2fd137beab9cf0e638f3b5ee776 Author: Prasad Pawar <[email protected]> AuthorDate: Thu Sep 25 17:50:02 2025 +0530 ATLAS-5120: [REACT UI] Spelling error in message that appears after entity is updated (#451) (cherry picked from bd7e02133f93465072deca7dd8c6383a8667199a) --- dashboard/src/views/Entity/EntityForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/views/Entity/EntityForm.tsx b/dashboard/src/views/Entity/EntityForm.tsx index d60ef81b1..2f4463a14 100644 --- a/dashboard/src/views/Entity/EntityForm.tsx +++ b/dashboard/src/views/Entity/EntityForm.tsx @@ -443,7 +443,7 @@ const EntityForm = ({ const { guidAssignments } = entityRespData; toast.dismiss(toastId.current); toastId.current = toast.success( - `Entity was ${isEmpty(guid) ? "created" : "udpated"} successfully` + `Entity was ${isEmpty(guid) ? "created" : "updated"} successfully` ); const newSearchParams = new URLSearchParams(); newSearchParams.set("tabActive", "properties");
