From f7deda06f5af06a3a8d9b224819d45ba52d62142 Mon Sep 17 00:00:00 2001 From: Andrei Pohilko Date: Tue, 17 Mar 2026 13:22:22 +0000 Subject: [PATCH] fix: pass resource name instead of chart name to describe API (#657) The DescribeResource component was passing the chart/release name instead of the actual resource name, causing all resources of the same kind to show the same describe output. Closes #657 Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/revision/RevisionResource.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/revision/RevisionResource.tsx b/frontend/src/components/revision/RevisionResource.tsx index fc25d98..520a82a 100644 --- a/frontend/src/components/revision/RevisionResource.tsx +++ b/frontend/src/components/revision/RevisionResource.tsx @@ -150,11 +150,11 @@ const DescribeResource = ({ } = resource; const { status, reason = "" } = conditions?.[0] || {}; - const { namespace = "", chart = "" } = useParams(); + const { namespace = "" } = useParams(); const { data, isLoading } = useGetResourceDescription( resource.kind, namespace, - chart + name ); const yamlFormattedData = useMemo(