Skip to content

Commit

Permalink
Fix invalid nesting warnings
Browse files Browse the repository at this point in the history
- For div inside of p tags
  • Loading branch information
aweiksnar committed Dec 8, 2015
1 parent 460f489 commit c5a165c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/subjects/index.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module?.exports = React.createClass

<section>
<h3>Projects:</h3>
<p><ProjectLinker user={@props.user} /></p>
<ProjectLinker user={@props.user} />
</section>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/talk/board.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ module?.exports = React.createClass

<section>
<h3>Projects:</h3>
<p><ProjectLinker user={@props.user} /></p>
<ProjectLinker user={@props.user} />
</section>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/talk/search.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ module.exports = React.createClass

<section>
<h3>Projects:</h3>
<p><ProjectLinker /></p>
<ProjectLinker />
</section>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/talk/tags.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module.exports = React.createClass

<section>
<h3>Projects:</h3>
<p><ProjectLinker user={@props.user} /></p>
<ProjectLinker user={@props.user} />
</section>
</div>
</div>
Expand Down

0 comments on commit c5a165c

Please sign in to comment.