diff --git a/frontend/src/routes/migration/+page.svelte b/frontend/src/routes/migration/+page.svelte index 7b88ed86..4a2de489 100644 --- a/frontend/src/routes/migration/+page.svelte +++ b/frontend/src/routes/migration/+page.svelte @@ -263,6 +263,17 @@ columns={[ { key: 'title', label: $t.dashboard?.title || 'Title', sortable: true }, { key: 'last_modified', label: $t.dashboard?.last_modified || 'Last Modified', sortable: true }, + { + key: 'status', + label: $t.dashboard?.status || 'Status', + sortable: true, + raw: true, + render: (item: any) => { + const isPublished = item.status === 'published'; + const cls = isPublished ? 'bg-success-light text-success' : 'bg-surface-muted text-text'; + return `${item.status || ''}`; + }, + }, ]} bind:selectedIds={model.selectedDashboardIds} selectable