Skip to content

Commit 254bd17

Browse files
committed
ACM-17500: Fix HostedCluster status CustomKubeconfig name
Changes required in the HC API to fix the resource name for the custom kubeconfig status field Signed-off-by: Juan Manuel Parrilla Madrid <jparrill@redhat.com>
1 parent bae0700 commit 254bd17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/ui-lib/lib/cim/components/Hypershift/DetailsPage/HypershiftKubeconfigDownload.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const HypershiftKubeconfigDownload = ({
1616
}: HypershiftKubeconfigDownloadProps) => {
1717
const { t } = useTranslation();
1818
const kubeconfigSecretName = hostedCluster.status?.customkubeconfig
19-
? hostedCluster.status.customkubeconfig?.name
19+
? hostedCluster.status.customKubeconfig?.name
2020
: hostedCluster.status?.kubeconfig?.name;
2121
const handleKubeconfigDownload = async () => {
2222
const kubeconfigSecretNamespace = hostedCluster.metadata?.namespace;

0 commit comments

Comments
 (0)