Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Set Next button label to 'Configure' on last step
Browse files Browse the repository at this point in the history
  • Loading branch information
mturley committed Feb 15, 2019
1 parent fdc140d commit 28c0f17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class ConversionHostWizard extends React.Component {
onClick={onFinalStep ? hideConversionHostWizardAction : this.nextStep}
disabled={disableNextStep}
>
{onFinalStep ? __('Close') : activeStep.id === stepIDs.authConfigStep ? __('Configure') : __('Next')}
{onFinalStep ? __('Close') : activeStep.id === stepIDs.authenticationStep ? __('Configure') : __('Next')}
{!onFinalStep && <Icon type="fa" name="angle-right" />}
</Button>
</Wizard.Footer>
Expand Down

0 comments on commit 28c0f17

Please sign in to comment.