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 ef85f42 commit 4166736Copy full SHA for 4166736
src/app/components/elements/layout/SidebarLayout.tsx
@@ -492,8 +492,8 @@ export const GenericConceptsSidebar = (props: GenericConceptsSidebarProps) => {
492
<div className="section-divider"/>
493
<h5>Filter by stage</h5>
494
<ul className="ps-2">
495
- {getFilteredStageOptions().map((stage, i) =>
496
- <li key={i}>
+ {getFilteredStageOptions().map((stage) =>
+ <li key={stage.value}>
497
<StyledCheckbox checked={searchStages.includes(stage.value)}
498
label={<>{stage.label} <span className="text-muted">({stageCounts[stage.value]})</span></>}
499
data-bs-theme={conceptFilters.length === 1 ? conceptFilters[0].id : undefined}
0 commit comments