Skip to content

Commit

Permalink
Correct invalid changeset name (#10057)
Browse files Browse the repository at this point in the history
  • Loading branch information
dprangnell committed Nov 30, 2023
1 parent 3c0387d commit 94a80c6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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);
Expand Down

0 comments on commit 94a80c6

Please sign in to comment.