We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 842d84a commit 8c28d24Copy full SHA for 8c28d24
src/components/CategoryList/CategoryList.react.js
@@ -66,7 +66,10 @@ export default class CategoryList extends React.Component {
66
this.highlight.style.top = height + 'px';
67
return;
68
}
69
- if (this.state.openClasses.includes(id)) {
+ if (id === 'classSeparator') {
70
+ height += 13;
71
+ }
72
+ else if (this.state.openClasses.includes(id)) {
73
height = height + (20 * (c.filters.length + 1))
74
} else {
75
height += 20;
0 commit comments