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} )