We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29154e3 commit a5ff701Copy full SHA for a5ff701
src/app/components/elements/layout/SidebarLayout.tsx
@@ -501,7 +501,7 @@ export const GenericConceptsSidebar = (props: GenericConceptsSidebarProps) => {
501
<div className="section-divider"/>
502
<h5>Filter by stage</h5>
503
<ul className="ps-2">
504
- {getFilteredStageOptions().filter(s => stageCounts[s.value] > 0).map((stage) =>
+ {getFilteredStageOptions().filter(s => stageCounts[s.value] > 0 || searchStages.includes(s.value)).map((stage) =>
505
<li key={stage.value}>
506
<StyledCheckbox checked={searchStages.includes(stage.value)}
507
label={<>{stage.label} <span className="text-muted">({stageCounts[stage.value]})</span></>}
0 commit comments