1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-21 13:47:39 +02:00

feat(archive): lint are you happy now?

This commit is contained in:
Corinne Krych 2018-02-09 19:23:12 +01:00
parent 8064551a6c
commit 8a4d48eeb7

View File

@ -22,9 +22,7 @@ class ArchiveList extends Component {
{feature.strategies.map((s, i) => (
<span style={{ marginLeft: `8px` }} key={i}>
<strong>{s.name}</strong>
{Object.keys(s.parameters).map((p, j) => (
<i key={j}> {s.parameters[p]}</i>
))}
{Object.keys(s.parameters).map((p, j) => <i key={j}> {s.parameters[p]}</i>)}
</span>
))}
</span>