fix/wizard-init-flow #1

Merged
hzhang merged 4 commits from fix/wizard-init-flow into main 2026-03-11 10:34:54 +00:00
Showing only changes of commit dbb7d9013a - Show all commits

View File

@@ -58,7 +58,7 @@ export default function DashboardPage() {
<tr><th>ID</th><th></th><th></th><th></th><th></th></tr>
</thead>
<tbody>
{stats.recent_issues.map((i) => (
{(stats.recent_issues || []).map((i) => (
<tr key={i.id}>
<td>#{i.id}</td>
<td><a href={`/issues/${i.id}`}>{i.title}</a></td>