V2Wizard: Update create/edit button copy

This updates copy on the Save changes button as per recent mocks.
This commit is contained in:
regexowl 2024-04-09 15:05:06 +02:00 committed by Amir Fefer
parent 8ebd74051b
commit 972190ecaf
4 changed files with 6 additions and 6 deletions

View file

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

View file

@ -45,7 +45,7 @@ export const EditSaveAndBuildBtn = ({
return (
<DropdownList>
<DropdownItem onClick={onSaveAndBuild} ouiaId="wizard-edit-build-btn">
Save and build images
Save changes and build image(s)
</DropdownItem>
</DropdownList>
);
@ -79,7 +79,7 @@ export const EditSaveButton = ({
/>
</FlexItem>
)}
<FlexItem>Save changes</FlexItem>
<FlexItem>Save changes to blueprint</FlexItem>
</Flex>
</MenuToggleAction>
);