Fix browser console errors
This commit is contained in:
parent
9c027b803c
commit
595b02e689
1 changed files with 4 additions and 4 deletions
|
@ -86,10 +86,10 @@ class EmojiReactions extends ImmutablePureComponent {
|
||||||
emptyMessage={emptyMessage}
|
emptyMessage={emptyMessage}
|
||||||
bindToDocument={!multiColumn}
|
bindToDocument={!multiColumn}
|
||||||
>
|
>
|
||||||
{Object.keys(groups).map((key, index) =>(
|
{Object.keys(groups).map((key) =>(
|
||||||
<AccountContainer key={index} id={key} withNote={false}>
|
<AccountContainer key={key} id={key} withNote={false}>
|
||||||
<div style={ { 'max-width': '100px' } }>
|
<div style={ { 'maxWidth': '100px' } }>
|
||||||
{groups[key].map((value) => <EmojiView name={value.name} url={value.url} staticUrl={value.static_url} />)}
|
{groups[key].map((value, index2) => <EmojiView key={index2} name={value.name} url={value.url} staticUrl={value.static_url} />)}
|
||||||
</div>
|
</div>
|
||||||
</AccountContainer>
|
</AccountContainer>
|
||||||
))}
|
))}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue