fix: map
This commit is contained in:
parent
f399302dfe
commit
f32ae93be5
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ export const tagMap = (collection) => {
|
|||
|
||||
if (books) {
|
||||
books.forEach((book) => {
|
||||
const tagString = book?.['tags']
|
||||
const tagString = book.['tags']?
|
||||
.map((tag) => tagAliases[tag.toLowerCase()])
|
||||
.join(' ')
|
||||
.trim()
|
||||
|
|
Reference in a new issue