feat(runs): add step title column, step descriptions, and snippet logging

This commit is contained in:
2026-04-10 14:56:15 +03:00
parent 607abcafc5
commit fd655c3253
2 changed files with 10 additions and 4 deletions
+4 -4
View File
@@ -115,10 +115,10 @@ export function RunDetailPage() {
const stepColumns: TableColumn<ScenarioRunStep>[] = [
{ key: 'order', header: t('runs.step_order'), render: (s) => s.order, width: 50 },
{
key: 'type',
header: t('runs.step_type'),
width: 80,
render: (s) => <Badge variant="neutral">{s.scenarioStep?.type ?? ''}</Badge>,
key: 'title',
header: t('runs.step_title'),
width: 220,
render: (s) => s.scenarioStep?.title ?? <span className={styles.muted}></span>,
},
{
key: 'status',