From 94a80c697f6aba6410f1073faeb86f922ca6d231 Mon Sep 17 00:00:00 2001 From: David Prangnell Date: Thu, 30 Nov 2023 10:21:35 -0800 Subject: [PATCH] Correct invalid changeset name (#10057) https://github.com/spinnaker/spinnaker/issues/6889 --- .../stages/deployCloudFormation/CloudFormationChangeSetInfo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/amazon/src/pipeline/stages/deployCloudFormation/CloudFormationChangeSetInfo.tsx b/packages/amazon/src/pipeline/stages/deployCloudFormation/CloudFormationChangeSetInfo.tsx index 5a849ad7969..a89f4b0e774 100644 --- a/packages/amazon/src/pipeline/stages/deployCloudFormation/CloudFormationChangeSetInfo.tsx +++ b/packages/amazon/src/pipeline/stages/deployCloudFormation/CloudFormationChangeSetInfo.tsx @@ -13,7 +13,7 @@ export interface ICloudFormationChangeSetInfoProps { export const CloudFormationChangeSetInfo = (props: ICloudFormationChangeSetInfoProps) => { const { stage, stageconfig } = props; const [changeSetName, setChangeSetName] = useState( - (stage as any).changeSetName ? (stage as any).changeSetName : "ChangeSet-${ execution['id']}", + (stage as any).changeSetName ? (stage as any).changeSetName : "ChangeSet-${execution['id']}", ); const [executeChangeSet, setExecuteChangeSet] = useState((stage as any).executeChangeSet); const [actionOnReplacement, setActionOnReplacement] = useState((stage as any).actionOnReplacement);