Skip to content

Commit

Permalink
TextPopup - unique values from projets, not sortedProjects (#1849)
Browse files Browse the repository at this point in the history
  • Loading branch information
entrotech authored Sep 17, 2024
1 parent a9f4c6b commit cb24fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Projects/ProjectsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ const ProjectsPage = ({ contentContainerRef }) => {
<td key={header.id}>
<ProjectTableColumnHeader
uniqueValues={[
...new Set(sortedProjects.map(p => p[property]))
...new Set(projects.map(p => p[property]))
]
.filter(value => value !== null)
.sort()}
Expand Down

0 comments on commit cb24fc9

Please sign in to comment.