You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
On the there needs to be a way of adding an id to each
within the
so that each item within the list can be identified.
Describe the solution you'd like
<liid={`${liContainerId}--${index}`}// <--- THIS IS WHAT IS NEEDEDclassName={index===activeOption&&activeClass
? [activeClass,liContainerClass].join(' ')
: [liContainerClass,index%2===0
? `${liContainerClass}--even`
: `${liContainerClass}--odd`,].join(' ')}key={optionName}onClick={onClick}style={liContainerStyle}>{optionName}</li>
Additional context
Specie list - id="species_option--0"; id="species_option--1"...etc
Product favorite Page
Add product from favorite list - id="product_option--0"; id="product_option--1"...etc.... when we have at least one product in the favorite list
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
On the there needs to be a way of adding an id to each
so that each item within the list can be identified.
Describe the solution you'd like
Additional context
Specie list - id="species_option--0"; id="species_option--1"...etc
Product favorite Page
Add product from favorite list - id="product_option--0"; id="product_option--1"...etc.... when we have at least one product in the favorite list
The text was updated successfully, but these errors were encountered: