Skip to content

Commit

Permalink
Fixed heading issue in Movie.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Erin Doyle committed Sep 2, 2018
1 parent c7ffccb commit d1f3c7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/primitives/Movie.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const Movie = ({ movieId, movie, movieActions }) => {
<div className="col-1"><img src={imgSrc} alt="movie" /></div>
<div className="col">
<div className="card-body">
<h5 className="card-title">{name} ({year})</h5>
<h6 className="card-subtitle mb-2 text-muted">{rating} | {runtime} { genre ? `| ${genre}` : null }</h6>
<h2 className="card-title">{name} ({year})</h2>
<p className="card-subtitle mb-2 text-muted">{rating} | {runtime} { genre ? `| ${genre}` : null }</p>
<p className="card-text">{description}</p>
<p className="card-text text-muted">Director: {director} | Stars: {stars}</p>

Expand Down

0 comments on commit d1f3c7c

Please sign in to comment.