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 83f05447a ATLAS-5131: [React UI] Glossary import being used instead of
business metadata import (#458)
83f05447a is described below
commit 83f05447a6c47e3d326969f8db4394148bf41636
Author: Prasad Pawar <[email protected]>
AuthorDate: Fri Sep 26 14:02:05 2025 +0530
ATLAS-5131: [React UI] Glossary import being used instead of business
metadata import (#458)
---
dashboard/src/components/ImportDialog.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dashboard/src/components/ImportDialog.tsx
b/dashboard/src/components/ImportDialog.tsx
index 67ce472ba..a3adfbb54 100644
--- a/dashboard/src/components/ImportDialog.tsx
+++ b/dashboard/src/components/ImportDialog.tsx
@@ -78,7 +78,7 @@ export const ImportDialog: React.FC<CustomModalProps> = ({
if (fileData) {
try {
let apiMethod =
- title == "Import Business Template"
+ title == "Import Business Metadata"
? getBusinessMetadataImport
: getGlossaryImport;
let formData = new FormData();