From 3ac20cbcd9d7d2314f121e7f97b767c7b31d4362 Mon Sep 17 00:00:00 2001 From: Yurii Vlasov Date: Tue, 7 Jan 2025 13:58:39 +0200 Subject: [PATCH] Renamed GetEnvironmentVariables to ContainerEnvironmentVariables. Signed-off-by: Yurii Vlasov --- frontend/src/components/common/Resource/Resource.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/common/Resource/Resource.tsx b/frontend/src/components/common/Resource/Resource.tsx index 973511abd3..52a744709a 100644 --- a/frontend/src/components/common/Resource/Resource.tsx +++ b/frontend/src/components/common/Resource/Resource.tsx @@ -578,7 +578,7 @@ export type EnvironmentVariable = { isOutOfSync: boolean; // If cm/sec creation timestamp is newer that pod's start timestamp }; -export function GetEnvironmentVariables(props: EnvironmentVariablesProps) { +function ContainerEnvironmentVariables(props: EnvironmentVariablesProps) { const { pod, container } = props; const { t } = useTranslation(); const [copied, setCopied] = React.useState(false); @@ -1395,7 +1395,7 @@ export function ContainerInfo(props: ContainerInfoProps) { }, { name: 'Environment', - value: , + value: , valueCellProps: { sm: 12 as GridSize }, hide: _.isEmpty(container?.env) && _.isEmpty(container?.envFrom), },