Wizard: change the name of wizard details

This commit change the name of wizard-details to details, to prevent misconfusion with the image-name component
This commit is contained in:
mgold1234 2023-07-26 12:23:42 +03:00 committed by Klara Simickova
parent 990f4c5a03
commit 5c1952d8c9
5 changed files with 5 additions and 5 deletions

View file

@ -473,7 +473,7 @@ const formStepHistory = (composeRequest, isBeta) => {
steps.push('File system configuration', 'packages');
}
steps.push('image-name');
steps.push('details');
return steps;
} else {

View file

@ -10,7 +10,7 @@ import CustomButtons from '../formComponents/CustomButtons';
export default {
StepTemplate,
id: 'wizard-details',
name: 'image-name',
name: 'details',
title: 'Details',
nextStep: 'review',
buttons: CustomButtons,

View file

@ -17,7 +17,7 @@ export default {
if (values.isBeta) {
return 'repositories';
} else {
return 'image-name';
return 'details';
}
},
buttons: CustomButtons,

View file

@ -13,7 +13,7 @@ export default {
title: 'Additional custom packages',
name: 'packages-content-sources',
substepOf: 'Content',
nextStep: 'image-name',
nextStep: 'details',
buttons: CustomButtons,
fields: [
{

View file

@ -3,5 +3,5 @@ export default ({ 'payload-repositories': customRepositories } = {}) => {
return 'packages-content-sources';
}
return 'image-name';
return 'details';
};