Fix warning about missing key prop
When rendering using a for loop each child whould have a key prop.
This commit is contained in:
parent
73a0197eb2
commit
2f388dfb6a
|
@ -143,7 +143,9 @@ class WelcomePage extends AbstractWelcomePage {
|
||||||
*/
|
*/
|
||||||
_renderFeature(index) {
|
_renderFeature(index) {
|
||||||
return (
|
return (
|
||||||
<div className = 'feature_holder'>
|
<div
|
||||||
|
className = 'feature_holder'
|
||||||
|
key = { index } >
|
||||||
<div
|
<div
|
||||||
className = 'feature_icon'
|
className = 'feature_icon'
|
||||||
data-i18n = { `welcomepage.feature${index}.title` } />
|
data-i18n = { `welcomepage.feature${index}.title` } />
|
||||||
|
|
Loading…
Reference in New Issue