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

@ -1,6 +1,6 @@
{
"name": "netlify-cms",
"version": "0.3.3",
"version": "0.3.4",
"description": "Netlify CMS lets content editors work on structured content stored in git",
"main": "dist/cms.js",
"scripts": {

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);
});
};