Skip to content

Commit

Permalink
Bugfix: Images not appearing on search
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiozen committed Jan 19, 2017
1 parent b8ce78a commit 4dd0c0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/EntryListing/EntryListing.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
};

Expand Down

0 comments on commit 4dd0c0c

Please sign in to comment.