Skip to content

Commit

Permalink
Merge pull request #1445 from jpuzz0/MTV-1948
Browse files Browse the repository at this point in the history
[MTV-1948] Plan wizard 2nd step 'create migration' button is disabled without a reason
  • Loading branch information
sgratch authored Jan 27, 2025
2 parents d20ff9a + 8b3884d commit 9d89766
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ export const PlanCreatePage: React.FC<{ namespace: string }> = ({ namespace }) =
!emptyContext &&
!(
!!state?.flow?.apiError ||
Object.values(state?.validation || []).some((validation) => validation === 'error') ||
state?.validation?.planName === 'default'
Object.values(state?.validation || []).some((validation) => validation === 'error')
),
canJumpTo: isFirstStepValid,
nextButtonText: 'Create migration plan',
Expand Down

0 comments on commit 9d89766

Please sign in to comment.