From 19e5837c93fbf3b434947f680a3bb23192381797 Mon Sep 17 00:00:00 2001 From: pengzh1 Date: Thu, 27 Aug 2026 19:55:54 +0800 Subject: [PATCH] style(ui): tighten read-only comment in pass-through endpoints table --- .../PassThroughSettings/PassThroughEndpointsTableColumns.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/litellm-dashboard/src/components/PassThroughSettings/PassThroughEndpointsTableColumns.tsx b/ui/litellm-dashboard/src/components/PassThroughSettings/PassThroughEndpointsTableColumns.tsx index 171fc0e0f80..1bdfbdfd5d7 100644 --- a/ui/litellm-dashboard/src/components/PassThroughSettings/PassThroughEndpointsTableColumns.tsx +++ b/ui/litellm-dashboard/src/components/PassThroughSettings/PassThroughEndpointsTableColumns.tsx @@ -73,8 +73,7 @@ interface EndpointRowActionsProps { function EndpointRowActions({ endpoint, onEndpointClick, onDeleteClick }: EndpointRowActionsProps) { const endpointId = endpoint.id; - // Config-file-defined endpoints can only be managed by editing config.yaml; - // the DB-backed API routes cannot create/update/delete them. + // The DB-backed CRUD API cannot manage config-file-defined endpoints. const readOnly = endpoint.is_from_config === true; const readOnlyHint = "Defined in config file — edit config.yaml to manage this endpoint"; return (