Skip to content

Commit

Permalink
Cleans up trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
coreymcollins committed Oct 4, 2018
1 parent 680dc50 commit bfc3e74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/search-edit-component/post-render.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PostRenderer extends Component {
<h3
className="h1"
style={ {
...TextOptionsInlineStyles( this.props ),
...TextOptionsInlineStyles( this.props )
} }
>{ post.name }</h3>
<img
Expand Down Expand Up @@ -56,13 +56,13 @@ class PostRenderer extends Component {
<h3
className="h1"
style={ {
...TextOptionsInlineStyles( this.props ),
...TextOptionsInlineStyles( this.props )
} }
>{ post.title.rendered }</h3>
<div
dangerouslySetInnerHTML={ { __html: post.excerpt.rendered } }
style={ {
...TextOptionsInlineStyles( this.props ),
...TextOptionsInlineStyles( this.props )
} }
/>
</li>
Expand Down

0 comments on commit bfc3e74

Please sign in to comment.