This is an automated email from the ASF dual-hosted git repository.
ppawar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/master by this push:
new bd7e02133 ATLAS-5120: [REACT UI] Spelling error in message that
appears after entity is updated (#451)
bd7e02133 is described below
commit bd7e02133f93465072deca7dd8c6383a8667199a
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)
---
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");