Code style improvements in JavaScript (#13159)

* JS-linter: fix trailing comma's

* Configure eslinter to ignore this onchange error.
This commit is contained in:
Bèr Kessels
2020-03-08 16:02:36 +01:00
committed by GitHub
parent 4e524218d3
commit fd76955f39
22 changed files with 28 additions and 27 deletions

View File

@ -93,7 +93,7 @@ class Followers extends ImmutablePureComponent {
bindToDocument={!multiColumn}
>
{blockedBy ? [] : accountIds.map(id =>
<AccountContainer key={id} id={id} withNote={false} />
<AccountContainer key={id} id={id} withNote={false} />,
)}
</ScrollableList>
</Column>