diff --git a/src/components/ImageCard.react.js b/src/components/ImageCard.react.js index b3ce231ae..d41f41a5d 100644 --- a/src/components/ImageCard.react.js +++ b/src/components/ImageCard.react.js @@ -178,7 +178,7 @@ var ImageCard = React.createClass({ } else if (this.state.tags.length === 0) { tags =
No Tags
; } else { - var tagDisplay = this.state.tags.filter(tag => tag.name.includes(this.state.searchTag)).map((tag) => { + var tagDisplay = this.state.tags.filter(tag => (tag && tag.name || tag || '').includes(this.state.searchTag)).map((tag) => { let t = ''; if (tag.name) { t = tag.name;