Nicer document previews

This commit is contained in:
Jori Lallo
2016-05-20 00:34:46 -07:00
parent 90310703ec
commit 01bd07bf9b
3 changed files with 35 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ class Dashboard extends React.Component {
{ this.props.isLoading ? (
<AtlasPreviewLoading />
) : this.props.items.map((item) => {
return (<AtlasPreview data={ item } />);
return (<AtlasPreview key={ item.id } data={ item } />);
}) }
</Flex>
</CenteredContent>