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 2bdccbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion dashboard/src/components/TestsTable/TestsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function TestsTable({
duration: e.duration?.toString() ?? '',
path: e.path,
start_time: e.startTime,
status: e.status,
status: e.status ?? 'NULL',
hardware: e.hardware,
});
switch (e.status) {
Expand Down

0 comments on commit 2bdccbc

Please sign in to comment.