Skip to content

Commit

Permalink
fix for thumnails not rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
asizemore committed Dec 11, 2024
1 parent a628d62 commit 5982792
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ function VolcanoPlotViz(props: VisualizationProps<Options>) {
plotContainerStyleOverrides,
} = props;

// If no filters applied, the currentPlotFilters will be undefined. It should be an empty array.
visualization.descriptor.currentPlotFilters =
visualization.descriptor.currentPlotFilters ?? [];
const studyMetadata = useStudyMetadata();
const { id: studyId } = studyMetadata;
const entities = useStudyEntities(filters);
Expand Down

0 comments on commit 5982792

Please sign in to comment.