fix(web): resolve practice/qualifying partial session bug by flagging starting_grid as N/A

This commit is contained in:
2026-05-25 14:33:14 -04:00
parent 937674f808
commit e060bcba24
9 changed files with 43 additions and 9 deletions

View File

@@ -70,6 +70,8 @@ export function DatasetStatusView({ datasets }: Props) {
<td>
{info?.status === 'available' ? (
<span className="badge badge-local">Local</span>
) : info?.status === 'skipped' ? (
<span className="badge badge-none">N/A</span>
) : (
<span className="badge badge-none">Missing</span>
)}