Client feature #14

Merged
KevinMidboe merged 13 commits from client_feature into master 2017-07-16 09:19:15 +00:00
Showing only changes of commit 9d29482857 - Show all commits

View File

@@ -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(<button onClick={() => this.requestMovie(this.id)}>Request</button>)
}
returnList.push(<span>{this.overview}</span>);
returnList.push(<br></br>);
return returnList;
}