Skip to content

Commit

Permalink
Merge pull request #175 from AI4Bharat/btns
Browse files Browse the repository at this point in the history
fixes
  • Loading branch information
aparna-aa authored Nov 18, 2024
2 parents e360dd8 + 22c5e55 commit 5de2160
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/Project/AllTaskTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ const AllTaskTable = (props) => {
const [selectedFilters, setsSelectedFilters] = useState({
task_status: [filterData.Status[0]],
});

if (ProjectDetails?.required_annotators_per_task > 1) {
filterData.Status = filterData.Status.filter(
(status) => status !== "super_checked"
);
}

const GetAllTasksdata = () => {
const taskobj = {
id: id,
Expand Down

0 comments on commit 5de2160

Please sign in to comment.