Consolidate database operation labels into a single entry for improved clarity

- Updated the ConfigurationWizard component to unify individual database operation labels (query, insert, update, delete) under a single "Database Operations" label.
- This change enhances the clarity of the configuration interface and aligns with recent refactoring efforts to streamline database management.
This commit is contained in:
Nikhil-Doye
2025-10-23 14:48:28 -04:00
parent 521fcb19a9
commit 88ff76e38b
+1 -4
View File
@@ -195,10 +195,7 @@ export const ConfigurationWizard: React.FC<ConfigurationWizardProps> = ({
embeddingGenerator: "Embedding Generator",
similaritySearch: "Similarity Search",
structuredOutput: "Structured Output",
databaseQuery: "Database Query",
databaseInsert: "Database Insert",
databaseUpdate: "Database Update",
databaseDelete: "Database Delete",
database: "Database Operations",
};
return labels[type] || "New Node";
};