webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js in katello-4.3.0.rc1 vs webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js in katello-4.3.0.rc2

- old
+ new

@@ -60,11 +60,11 @@ }, [affectedHosts, selectedEnvForHost, selectedCVForHosts, affectedActivationKeys, selectedEnvForAK, selectedCVForAK]); const environmentSelectionStep = { id: 1, - name: __('Remove from environments'), + name: __('Remove versions from environments'), component: <CVDeleteEnvironmentSelection />, }; const affectedHostsStep = { id: 2, name: __('Reassign affected hosts'), @@ -76,11 +76,11 @@ component: <CVDeletionReassignActivationKeysForm />, enableNext: canReview, }; const reviewStep = { id: 4, - name: __('Review'), + name: __('Review details'), component: <CVDeletionReview />, canJumpTo: canReview, nextButtonText: __('Delete'), }; const finishStep = { @@ -133,20 +133,20 @@ setSelectedCVForHosts, selectedCVNameForHosts, setSelectedCVNameForHosts, affectedActivationKeys, affectedHosts, - }} + }} > <Wizard title={__('Delete content view')} description={<>{__('Deleting content view : ')}<b>{name}</b></>} steps={steps} startAtStep={currentStep} onClose={() => { - setIsOpen(false); - setCurrentStep(0); - }} + setIsOpen(false); + setCurrentStep(0); + }} isOpen={show} /> </CVDeleteContext.Provider> ); };