From 5ec3b0b66f7d975d459b7f8ecf7e7aeef224ee1c Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Fri, 2 Sep 2022 02:19:28 +0530 Subject: [PATCH] minor bug fix --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} ` })