Bugfix: Images not appearing on search

This commit is contained in:
Cássio Zen
2017-01-19 16:34:13 -02:00
parent b8ce78a5f0
commit 4dd0c0ccb5
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ export default class EntryListing extends React.Component {
const collection = collections
.filter(collection => collection.get('name') === entry.get('collection')).first();
const inferedFields = this.inferFields(collection);
return this.renderCard(collection, entry, inferedFields);
return this.renderCard(collection, entry, inferedFields, publicFolder);
});
};