From 674ffd90208eb0ef412ce3f5f39aba09d1f5c816 Mon Sep 17 00:00:00 2001 From: Bharat Ramanathan Date: Mon, 24 Feb 2025 15:30:41 +0530 Subject: [PATCH] feat: add weave panel components and config modal --- .../[appId]/overview/tracing/config-popup.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/config-popup.tsx b/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/config-popup.tsx index 4f923ec055..5c32819a58 100644 --- a/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/config-popup.tsx +++ b/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/config-popup.tsx @@ -152,6 +152,9 @@ const ConfigPopup: FC = ({ if (opikConfig) configuredPanels.push(opikPanel) + if (weaveConfig) + configuredPanels.push(weavePanel) + return configuredPanels } @@ -169,6 +172,8 @@ const ConfigPopup: FC = ({ if (!opikConfig) notConfiguredPanels.push(opikPanel) + if (!weaveConfig) + notConfiguredPanels.push(weavePanel) return notConfiguredPanels } @@ -224,6 +229,7 @@ const ConfigPopup: FC = ({ {langSmithPanel} {langfusePanel} {opikPanel} + {weavePanel} )