CreateImageWizard: navigate to review step on recreate

When recreating an image navigate to the review step instead of the
initial step. This requires forming the step history to enable a
functional sidebar.
This commit is contained in:
Jacob Kozol 2022-03-17 20:16:13 +01:00 committed by jkozol
parent d16f71c98f
commit 20c1537d8e
2 changed files with 47 additions and 4 deletions

View file

@ -120,7 +120,10 @@ const ImagesTable = () => {
const actions = [
{
title: 'Recreate image',
onClick: (_event, _rowId, rowData) => navigate('/imagewizard', { state: { composeRequest: rowData.compose.request }})
onClick: (_event, _rowId, rowData) => navigate(
'/imagewizard',
{ state: { composeRequest: rowData.compose.request, initialStep: 'review' }}
)
}
];