Skip to content

Commit 9d89766

Browse files
authored
Merge pull request #1445 from jpuzz0/MTV-1948
[MTV-1948] Plan wizard 2nd step 'create migration' button is disabled without a reason
2 parents d20ff9a + 8b3884d commit 9d89766

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/forklift-console-plugin/src/modules/Plans/views/create/PlanCreatePage.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ export const PlanCreatePage: React.FC<{ namespace: string }> = ({ namespace }) =
9595
!emptyContext &&
9696
!(
9797
!!state?.flow?.apiError ||
98-
Object.values(state?.validation || []).some((validation) => validation === 'error') ||
99-
state?.validation?.planName === 'default'
98+
Object.values(state?.validation || []).some((validation) => validation === 'error')
10099
),
101100
canJumpTo: isFirstStepValid,
102101
nextButtonText: 'Create migration plan',

0 commit comments

Comments
 (0)