chore(layout): remove page keywords in open graph

This commit is contained in:
ppoffice 2020-08-14 12:42:28 -04:00
parent f046c8cd19
commit 03567e402b
No known key found for this signature in database
GPG Key ID: B33335481CC0D498
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ module.exports = class extends Component {
updated={page.updated}
author={open_graph.author || config.author}
description={open_graph.description || page.description || page.excerpt || page.content || config.description}
keywords={page.keywords || (page.tags && page.tags.length ? page.tags : undefined) || config.keywords}
keywords={(page.tags && page.tags.length ? page.tags : undefined) || config.keywords}
url={open_graph.url || page.permalink || url}
images={openGraphImages}
siteName={open_graph.site_name || config.title}