Skip to content

Commit

Permalink
Replaces p tags with div tags in text options panel
Browse files Browse the repository at this point in the history
  • Loading branch information
coreymcollins committed Oct 5, 2018
1 parent 15e581e commit 834b331
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/text-options/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function TextOptions( props ) {
>
<PanelRow>
<div className="wds-text-option">
<p>
<div>
<PanelColor
title={ __( 'Text Color' ) }
colorValue={ props.attributes.textColor }
Expand All @@ -45,10 +45,10 @@ function TextOptions( props ) {
onChange={ setTextColor }
/>
</PanelColor>
</p>
<p>
</div>
<div>
{ __( 'Change the text color of this block.' ) }
</p>
</div>
</div>
</PanelRow>
</PanelBody>
Expand Down

0 comments on commit 834b331

Please sign in to comment.