diff --git a/client/app/components/MovieObject.jsx b/client/app/components/MovieObject.jsx index eaf4667..7784c5a 100644 --- a/client/app/components/MovieObject.jsx +++ b/client/app/components/MovieObject.jsx @@ -7,7 +7,8 @@ class MovieObject { this.year = object.year; // Check if object.poster != undefined this.poster = object.poster; - this.matchedInPlex = object.matchedInPlex + this.matchedInPlex = object.matchedInPlex; + this.overview = object.overview; } requestExisting(id) { @@ -35,6 +36,8 @@ class MovieObject { returnList.push() } + returnList.push({this.overview}); + returnList.push(

); return returnList; }