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:
parent
d16f71c98f
commit
20c1537d8e
2 changed files with 47 additions and 4 deletions
|
|
@ -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' }}
|
||||
)
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue