Skip to content

Commit

Permalink
fix: show 'NULL' instead of nothing in status col
Browse files Browse the repository at this point in the history
Closes #714
  • Loading branch information
murilx committed Dec 23, 2024
1 parent 7141c73 commit da6bb5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/components/BootsTable/BootsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export function BootsTable({
id: e.id,
path: e.path,
startTime: e.startTime,
status: e.status,
status: e.status ?? 'NULL',
}),
),
}),
Expand Down

0 comments on commit da6bb5d

Please sign in to comment.