Skip to content

Commit

Permalink
fix #263
Browse files Browse the repository at this point in the history
  • Loading branch information
jljsj33 committed Nov 19, 2019
1 parent 3b0e617 commit 64d0d4f
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions site/templates/template/element/Pricing1/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,20 @@ class Pricing1 extends React.PureComponent {
>
<QueueAnim type="bottom" {...wrapper}>
<div {...topWrapper}>
<div {...name} key="name" />
<h1 {...money} key="money">{money.children}</h1>
<div {...name} key="name">
{
/* replace-start-value = name.children */
React.createElement('span', { dangerouslySetInnerHTML: { __html: name.children } })
/* replace-end-value */
}
</div>
<h1 {...money} key="money">
{
/* replace-start-value = money.children */
React.createElement('span', { dangerouslySetInnerHTML: { __html: money.children } })
/* replace-end-value */
}
</h1>
</div>
<div {...content} key="content">
{
Expand Down

1 comment on commit 64d0d4f

@jljsj33
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.