diff --git a/package.json b/package.json
index 78f231d311..90f901e8ca 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "Kitematic",
- "version": "0.10.4",
+ "version": "0.11.0",
"author": "Kitematic",
"description": "Simple Docker Container management for Mac OS X.",
"homepage": "https://kitematic.com/",
diff --git a/src/components/ImageCard.react.js b/src/components/ImageCard.react.js
index 2816757695..0115f7671c 100644
--- a/src/components/ImageCard.react.js
+++ b/src/components/ImageCard.react.js
@@ -119,7 +119,7 @@ var ImageCard = React.createClass({
var description;
if (this.props.image.description) {
description = this.props.image.description;
- } else if(this.props.image.short_description){
+ } else if (this.props.image.short_description) {
description = this.props.image.short_description;
} else {
description = 'No description.';
diff --git a/src/components/NewContainerSearch.react.js b/src/components/NewContainerSearch.react.js
index 886ad17817..fac25935b4 100644
--- a/src/components/NewContainerSearch.react.js
+++ b/src/components/NewContainerSearch.react.js
@@ -240,7 +240,7 @@ module.exports = React.createClass({
);
paginateResults = null;
} else if (filter === 'userimages') {
- let userImageItems = this.state.images.map(image => {
+ let userImageItems = this.state.images.map((image, index) => {
let repo = image.RepoTags[0].split(':')[0];
if (repo.indexOf('/') === -1) {
repo = 'local/' + repo;
@@ -250,7 +250,10 @@ module.exports = React.createClass({
let tags = image.tags.join('-');
image.star_count = 0;
image.is_local = true;
- return (