We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c317863 commit cba7c41Copy full SHA for cba7c41
src/components/record/RecordRow.jsx
@@ -72,13 +72,13 @@ const RecordRow = (props) => {
72
{`${record.author.firstName} ${record.author.lastName}`}
73
</Button>
74
) : (
75
- <span className="text-warning">Not Found</span>
+ "—"
76
)}
77
</td>
78
79
80
{props.visibleColumns.includes(COLUMNS.INSTITUTION) && (
81
- <td className="report-row content-center">{record.institution.name}</td>
+ <td className="report-row content-center">{record.institution ? record.institution.name : "—"}</td>
82
83
84
{props.visibleColumns.includes(COLUMNS.TEMPLATE) && (
0 commit comments