Skip to content

Commit

Permalink
fix: Failed/Uploading batch has no Node Types for files
Browse files Browse the repository at this point in the history
  • Loading branch information
amattu2 committed Feb 16, 2024
1 parent 73d90bb commit 99e0fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/dataSubmissions/FileListDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const tableContainerSx: TableContainerProps["sx"] = {
const columns: Column<BatchFileInfo>[] = [
{
label: "Type",
renderValue: (data) => <StyledNodeType>{data?.nodeType}</StyledNodeType>,
renderValue: (data) => <StyledNodeType>{data?.nodeType || "N/A"}</StyledNodeType>,
field: "nodeType",
default: true
},
Expand Down

0 comments on commit 99e0fe4

Please sign in to comment.