diff --git a/package.json b/package.json index 58cd085b..ed1045e6 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/components/EntryListing/EntryListing.js b/src/components/EntryListing/EntryListing.js index 7ab28b45..20692af7 100644 --- a/src/components/EntryListing/EntryListing.js +++ b/src/components/EntryListing/EntryListing.js @@ -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); }); };