V2Wizard: Differentiate between Create and Edit mode on Review step

This renames actions on the primary button on Review step for the Create mode so it's clear whether you're creating a blueprint from a scratch or saving changes to an already existing blueprint.
This commit is contained in:
regexowl 2024-04-17 16:09:32 +02:00 committed by Amir Fefer
parent 04131c4823
commit dbeee5d066
3 changed files with 5 additions and 5 deletions

View file

@ -43,7 +43,7 @@ export const CreateSaveAndBuildBtn = ({
return (
<DropdownList>
<DropdownItem onClick={onSaveAndBuild} ouiaId="wizard-create-build-btn">
Save changes and build image(s)
Create blueprint and build image(s)
</DropdownItem>
</DropdownList>
);
@ -75,7 +75,7 @@ export const CreateSaveButton = ({
/>
</FlexItem>
)}
<FlexItem>Save changes to blueprint</FlexItem>
<FlexItem>Create blueprint</FlexItem>
</Flex>
</MenuToggleAction>
);