From 2caffd8b2ff0ffebf45e36aefc5903b7bba2ab42 Mon Sep 17 00:00:00 2001 From: Sharon Gratch Date: Mon, 6 Jan 2025 17:57:22 +0200 Subject: [PATCH] Fix a bug of reseting the planname validation field when reseting the plan Whan going back in plan's wizard from step 2 to step 1 and updating the Plan's VMs list and then going next to step 2 again, the plan name field was not validated correctly and therefore the wizard was blocked. Signed-off-by: Sharon Gratch --- .../src/modules/Providers/views/migrate/reducer/reducer.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/forklift-console-plugin/src/modules/Providers/views/migrate/reducer/reducer.ts b/packages/forklift-console-plugin/src/modules/Providers/views/migrate/reducer/reducer.ts index 3c82f7e4c..6105d85ba 100644 --- a/packages/forklift-console-plugin/src/modules/Providers/views/migrate/reducer/reducer.ts +++ b/packages/forklift-console-plugin/src/modules/Providers/views/migrate/reducer/reducer.ts @@ -489,6 +489,7 @@ const handlers: { draft.calculatedPerNamespace = newDraft.calculatedPerNamespace; draft.receivedAsParams = newDraft.receivedAsParams; draft.alerts = newDraft.alerts; + draft.validation = newDraft.validation; }, };