ui: fix heatmap expand state

This commit is contained in:
nick-delirium 2025-02-20 11:30:47 +01:00
parent 659aa7495f
commit 0a4379be6b
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0

View file

@ -143,7 +143,7 @@ function FilterSeries(props: Props) {
onToggleCollapse, onToggleCollapse,
excludeCategory excludeCategory
} = props; } = props;
const expanded = !collapseState const expanded = isHeatmap || !collapseState
const setExpanded = onToggleCollapse const setExpanded = onToggleCollapse
const { series, seriesIndex } = props; const { series, seriesIndex } = props;