Skip to content

Commit

Permalink
resolve undone null check for product label
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickson-adbe committed May 29, 2024
1 parent 0b7e613 commit 853b095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/gmo-program-details/gmo-program-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ async function buildProductCard(program) {
productList.classList.add('product', 'card-content');
productList.innerHTML = `
<img class="icon" src=${productMapping.icon}></img>
${productMapping.label}
${checkBlankString(productMapping.label)}
`
document.querySelector('.card.products').appendChild(productList);
}
Expand Down

0 comments on commit 853b095

Please sign in to comment.