Skip to content

Commit

Permalink
🐛 Unknown file name fallback for link text
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 committed Sep 6, 2023
1 parent d4b606b commit 2bda12a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export const IssueAffectedFilesTable: React.FC<
isInline
onClick={() => setSelectedFileForDetailModal(fileReport)}
>
{fileReport.file}
{fileReport?.file || "<unknown>"}
</Button>
</Td>
<Td
Expand Down

0 comments on commit 2bda12a

Please sign in to comment.