Skip to content

Commit

Permalink
fixing source/collections search results expanded row version label
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Feb 9, 2021
1 parent 5904d44 commit 1d44389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/search/ResultsTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ const HistoryTable = ({ versions }) => {
<TableBody>
{
map(headFirst(versions), version => (
<TableRow hover key={version.uuid || version.id}>
<TableRow hover key={version.version || version.uuid || version.id}>
<TableCell align='center'>
{ version.uuid || version.id }
{ version.version || version.uuid || version.id }
</TableCell>
<TableCell align='left'>
{ version.update_comment || version.description }
Expand Down

0 comments on commit 1d44389

Please sign in to comment.