Fix broken builds when trying to run regex on empty content
This commit is contained in:
parent
63421d67e4
commit
2611aa208d
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ const Page = ({ data, location }) => {
|
||||||
{/* The main page content */}
|
{/* The main page content */}
|
||||||
<section
|
<section
|
||||||
className="content-body load-external-scripts"
|
className="content-body load-external-scripts"
|
||||||
dangerouslySetInnerHTML={{ __html: page.html.replace(new RegExp(config.mediaUrlFrom, 'g'), config.mediaUrlTo) }}
|
dangerouslySetInnerHTML={{ __html: page.html ? page.html.replace(new RegExp(config.mediaUrlFrom, 'g'), config.mediaUrlTo) : page.html }}
|
||||||
/>
|
/>
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -40,7 +40,7 @@ const Post = ({ data, location }) => {
|
||||||
{/* The main post content */ }
|
{/* The main post content */ }
|
||||||
<section
|
<section
|
||||||
className="content-body load-external-scripts"
|
className="content-body load-external-scripts"
|
||||||
dangerouslySetInnerHTML={{ __html: post.html.replace(new RegExp(config.mediaUrlFrom, 'g'), config.mediaUrlTo) }}
|
dangerouslySetInnerHTML={{ __html: post.html ? post.html.replace(new RegExp(config.mediaUrlFrom, 'g'), config.mediaUrlTo) : post.html }}
|
||||||
/>
|
/>
|
||||||
<section className="content-footer">
|
<section className="content-footer">
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in a new issue