diff --git a/edsdme/scripts/utils.js b/edsdme/scripts/utils.js index 14f34a5..bfe56c5 100644 --- a/edsdme/scripts/utils.js +++ b/edsdme/scripts/utils.js @@ -318,7 +318,6 @@ function getPartnerLevelParams(portal) { return partnerLevel ? `(${partnerTagBase}${partnerLevel}"+OR+${partnerTagBase}public")` : `(${partnerTagBase}public")`; } - function extractTableCollectionTags(el) { let tableCollectionTags = []; Array.from(el.children).forEach((row) => { @@ -328,7 +327,7 @@ function extractTableCollectionTags(el) { if (rowTitle === 'collection-tags') { const [collectionTagsEl] = colsContent; const collectionTags = Array.from(collectionTagsEl.querySelectorAll('li'), (li) => `"${li.textContent.trim().toLowerCase()}"`); - const filtered = collectionTags.filter(tag => !tag.includes("caas:adobe-partners/cpp/region/")); + const filtered = collectionTags.filter((tag) => !tag.includes('caas:adobe-partners/cpp/region/')); tableCollectionTags = [...tableCollectionTags, ...filtered]; } });