Skip to content

Commit

Permalink
Merge pull request evershopcommerce#364 from evershopcommerce/dev
Browse files Browse the repository at this point in the history
Fix overflow of variants in productView/Variants.jsx
  • Loading branch information
treoden authored Oct 14, 2023
2 parents 54894ae + bb776f3 commit 53ccd84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default function Variants({
</div>
<ul className="variant-option-list flex justify-start gap-05 flex-wrap">
{options.map((o) => {
className = ''
let className = '';
if (a.selected && a.selectedOption === o.optionId) {
className = 'selected';
}
Expand Down

0 comments on commit 53ccd84

Please sign in to comment.