1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

add missing key

This commit is contained in:
sveisvei 2016-12-09 14:00:37 +01:00
parent fe97342846
commit 4c343adb34

View File

@ -84,7 +84,7 @@ export default class App extends Component {
return ( return (
<span> <span>
{result.map((entry, index) => ( {result.map((entry, index) => (
<span><Link style={{ color: '#f1f1f1', textDecoration: 'none' }} key={entry.link + index} to={entry.link}> <span key={entry.link + index}><Link style={{ color: '#f1f1f1', textDecoration: 'none' }} to={entry.link}>
{entry.name} {entry.name}
</Link> {(index + 1) < result.length ? ' / ' : null}</span> </Link> {(index + 1) < result.length ? ' / ' : null}</span>
))} ))}