fix: formatting
This commit is contained in:
parent
6cdc007e79
commit
d5279c5c8b
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ export const allContent = (collection) => {
|
|||
title: `${icon}: ${getTitle(item)}`
|
||||
}
|
||||
if (item.data?.link) content.url = item.data?.link
|
||||
if (item.data?.description) content.description = item.data.description
|
||||
if (item?.description) content.description = item.description
|
||||
if (item.data?.description) content.description = `${item.data.description}<br/><br/>`
|
||||
if (item?.description) content.description = `${item.description}<br/><br/>`
|
||||
const date = getDate ? parseDate(getDate(item)) : null
|
||||
if (date) content.date = date
|
||||
aggregateContent.push(content)
|
||||
|
|
Reference in a new issue