From 57501dc8eed2670d969fa4e0707994c297eee1f7 Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Tue, 6 Sep 2022 14:22:38 +0200 Subject: [PATCH] Add MlModel config type (#7233) --- .../src/components/AddIngestion/AddIngestion.component.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/AddIngestion.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/AddIngestion.component.tsx index 06ae891cc9b..1d4221b66db 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/AddIngestion.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/AddIngestion.component.tsx @@ -448,6 +448,11 @@ const AddIngestion = ({ type: ConfigType.PipelineMetadata, }; } + case ServiceCategory.ML_MODAL_SERVICES: { + return { + type: ConfigType.MlModelMetadata, + }; + } default: { return {}; }