Skip to content

Commit

Permalink
Actually, put those commas back. I think the linting in this plugin/m…
Browse files Browse the repository at this point in the history
…y local is off from our own standards
  • Loading branch information
coreymcollins committed Oct 4, 2018
1 parent bfc3e74 commit d9f5f10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 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 Expand Up @@ -97,7 +97,7 @@ export default withSelect( ( select, props ) => {
const selectedResultsFilter = selectedResultsQuery.join( '&' );

return {
selectedResultsJSONAlt: `/wp/v2/${ props.attributes.queryFor }?_embed&${ selectedResultsFilter }&orderby=include`
selectedResultsJSONAlt: `/wp/v2/${ props.attributes.queryFor }?_embed&${ selectedResultsFilter }&orderby=include`,
};
}
}
Expand Down

0 comments on commit d9f5f10

Please sign in to comment.