From ce1a474261b3d7a4e89f75d80890aefac9f98dfc Mon Sep 17 00:00:00 2001 From: Gu Date: Mon, 21 Apr 2025 19:01:07 -0400 Subject: [PATCH] order tracing providers by alphabetical order --- .../[appId]/overview/tracing/config-popup.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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 d34ce1bad7..90273327b9 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 @@ -157,18 +157,19 @@ const ConfigPopup: FC = ({ const moreProviderPanel = () => { const notConfiguredPanels: JSX.Element[] = [] - if (!weaveConfig) - notConfiguredPanels.push(weavePanel) - - if (!langSmithConfig) - notConfiguredPanels.push(langSmithPanel) if (!langFuseConfig) notConfiguredPanels.push(langfusePanel) + if (!langSmithConfig) + notConfiguredPanels.push(langSmithPanel) + if (!opikConfig) notConfiguredPanels.push(opikPanel) + if (!weaveConfig) + notConfiguredPanels.push(weavePanel) + return notConfiguredPanels }