001-migration-ui-redesign (#3)

Reviewed-on: #3
This commit is contained in:
2025-12-26 18:17:58 +03:00
parent 4448352ef9
commit a43f8fb021
38 changed files with 2434 additions and 51 deletions

View File

@@ -4,6 +4,7 @@
import DynamicForm from '../components/DynamicForm.svelte';
import { api } from '../lib/api.js';
import { get } from 'svelte/store';
import { goto } from '$app/navigation';
/** @type {import('./$types').PageData} */
export let data;
@@ -15,7 +16,11 @@
function selectPlugin(plugin) {
console.log(`[Dashboard][Action] Selecting plugin: ${plugin.id}`);
selectedPlugin.set(plugin);
if (plugin.id === 'superset-migration') {
goto('/migration');
} else {
selectedPlugin.set(plugin);
}
}
async function handleFormSubmit(event) {