diff --git a/src/routes/console/(migration-wizard)/resource-form.svelte b/src/routes/console/(migration-wizard)/resource-form.svelte index f67f5fc8c..b2015db31 100644 --- a/src/routes/console/(migration-wizard)/resource-form.svelte +++ b/src/routes/console/(migration-wizard)/resource-form.svelte @@ -15,6 +15,7 @@ resourcesToMigrationForm } from '$lib/stores/migration'; import { addNotification } from '$lib/stores/notifications'; + import { wizard } from '$lib/stores/wizard'; export let formData: ReturnType; export let provider: ReturnType; @@ -137,7 +138,7 @@ } catch (e) { if (!isOpen) return; addNotification({ - message: e.message, + message: 'Request failed, please check your crendentials and try again.', type: 'error' }); } @@ -148,8 +149,7 @@ }); $: resources = providerResources[$provider.provider]; - - // $: wizard.setNextDisabled(!report); + $: wizard.setNextDisabled(!report);
diff --git a/src/routes/console/project-[project]/settings/migrations/(import)/step1.svelte b/src/routes/console/project-[project]/settings/migrations/(import)/step1.svelte index 9e2c412d2..6647917a0 100644 --- a/src/routes/console/project-[project]/settings/migrations/(import)/step1.svelte +++ b/src/routes/console/project-[project]/settings/migrations/(import)/step1.svelte @@ -7,7 +7,8 @@ InputNumber, InputPassword, InputSelect, - InputText + InputText, + InputTextarea } from '$lib/elements/forms'; import { WizardStep } from '$lib/layout'; import type { Provider } from '$lib/stores/migration'; @@ -112,7 +113,7 @@
-