Skip to content

Commit

Permalink
resolved isseu cvat-ai#7443
Browse files Browse the repository at this point in the history
  • Loading branch information
thekavikumar committed Mar 22, 2024
1 parent d53c5e7 commit e2e2cd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function LabelsListComponent(): JSX.Element {
const activeControl = useSelector((state: CombinedState) => state.annotation.canvas.activeControl);

let frames = issues
.filter((issue: Issue) => !issue.resolved) // Filter out the resolved issues
.filter((issue: Issue) => !issue.resolved && issuesResolvedHidden) // Filter out the resolved issues
.map((issue: Issue) => issue.frame) // Extract frames from remaining issues
.sort((a: number, b: number) => +a - +b); // Sort the frames

Expand Down

0 comments on commit e2e2cd1

Please sign in to comment.