Skip to content

Commit a88274e

Browse files
committed
Don't nest <p> so that no error shows up in console
1 parent a3462c3 commit a88274e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/default_panels/StyleLayoutPanel.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,12 @@ const StyleLayoutPanel = (props, {localize: _}) => (
184184
{_(
185185
'You can refer to the items in this column in any text fields of the editor like so: '
186186
)}
187-
<p>
188-
{_('Ex: ')}
189-
<span style={{letterSpacing: '1px', fontStyle: 'italic', userSelect: 'text'}}>
190-
{_('My custom title %{meta[1]}')}
191-
</span>
192-
</p>
187+
</p>
188+
<p>
189+
{_('Ex: ')}
190+
<span style={{letterSpacing: '1px', fontStyle: 'italic', userSelect: 'text'}}>
191+
{_('My custom title %{meta[1]}')}
192+
</span>
193193
</p>
194194
</Info>
195195
</PlotlyFold>

0 commit comments

Comments
 (0)