Skip to content
Snippets Groups Projects
Commit ffec08f0 authored by victor mutai's avatar victor mutai Committed by chris
Browse files

chore: improvememnt

parent f9c53567
No related branches found
No related tags found
1 merge request!536Counters
...@@ -202,9 +202,9 @@ const CounterTool = ({ view: { state }, item }) => { ...@@ -202,9 +202,9 @@ const CounterTool = ({ view: { state }, item }) => {
item={item} item={item}
view={state} view={state}
> >
{Object.keys(infoDropDownOptions).map(key => ( {infoDropDownOptions.map(option => (
<Counter key={key} title={infoDropDownOptions[key].name}> <Counter key={option.name} title={option.name}>
<span>{infoDropDownOptions[key].name}</span> <span>{option.name}</span>
</Counter> </Counter>
))} ))}
</CounterInfoComponent> </CounterInfoComponent>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment