Skip to content

Commit

Permalink
fixing an eslint line length nag
Browse files Browse the repository at this point in the history
  • Loading branch information
flacoman91 committed Jul 14, 2020
1 parent 38c62d6 commit 6586189
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/reducers/trends.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,8 @@ function updateRowVisibility( state, expandedTrends ) {
if ( results.hasOwnProperty( k ) && Array.isArray( results[k] ) ) {
results[k]
.forEach( o => {
o.visible = Boolean( expandedTrends.includes( o.parent ) || o.isParent )
o.visible =
Boolean( expandedTrends.includes( o.parent ) || o.isParent )
} )
}
}
Expand Down

0 comments on commit 6586189

Please sign in to comment.