diff --git a/index.html b/index.html index 71f8a6e..2c45d41 100644 --- a/index.html +++ b/index.html @@ -1352,7 +1352,7 @@ allHeadings.forEach(heading => { headingObserver.observe(heading.nextElementSibling) }) - const contributorList = contributors.map(id => { + const contributorList = contributors.filter(v => v).map(id => { const contributorName = floGlobals.appObjects.rmTimes.articleWriters.hasOwnProperty(id) ? floGlobals.appObjects.rmTimes.articleWriters[id].name : id; return html` ${contributorName} ` })