Skip to content

Commit

Permalink
chore: fix eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinecula authored and JockeCK committed Jul 23, 2020
1 parent 851c614 commit 81c33dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cosmoz-data-nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,9 @@ class CosmozDataNav extends hauntedPolymer('haunted', useDataNav)(mixinBehaviors
prev.classList.add('out');
prev.classList.remove('selected');
}
this.renderItem && IronResizableBehavior.notifyResize.call(this);
if (this.renderItem) {
IronResizableBehavior.notifyResize.call(this);
}
classes.remove('in');
}, 8);
}
Expand Down

0 comments on commit 81c33dd

Please sign in to comment.