Skip to content
Snippets Groups Projects
Commit 82ba84c7 authored by esikkala's avatar esikkala
Browse files

HierarchicalFacet: fix isVirtualized

parent 6d751c92
No related branches found
No related tags found
No related merge requests found
......@@ -350,7 +350,7 @@ class HierarchicalFacet extends Component {
onlyExpandSearchedNodes
theme={FileExplorerTheme}
generateNodeProps={this.generateNodeProps}
isVirtualized={!this.props.facetedSearchMode || !this.props.facetedSearchMode === 'storybook'} // virtualization does not work in Storybook
isVirtualized={this.props.facetedSearchMode !== 'storybook'} // virtualization does not work in Storybook
/>
</div>}
{facet.filterType === 'spatialFilter' &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment