diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx index 084aa6513..a5e61b675 100644 --- a/src/reducers/trends.jsx +++ b/src/reducers/trends.jsx @@ -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 ) } ) } }