Skip to content

Commit

Permalink
Merge pull request #1040 from AI4Bharat/akshaya-new
Browse files Browse the repository at this point in the history
De-allocation drop down options - changed
  • Loading branch information
ishvindersethi22 authored Jun 5, 2024
2 parents 2a0a979 + 4ba52b5 commit 2c8158d
Showing 1 changed file with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,28 @@ let AnnotationStatus = [
"unlabeled",
"skipped",
"draft",
"labeled",
// "labeled",
"to_be_revised",
];

let ReviewStatus = [
"unreviewed",
"accepted",
"accepted_with_minor_changes",
"accepted_with_major_changes",
// "accepted",
// "accepted_with_minor_changes",
// "accepted_with_major_changes",
"to_be_revised",
"draft",
"skipped",
];

let SuperChecker = ["unvalidated","validated","validated_with_changes","skipped","draft","rejected"];
let SuperChecker = [
"unvalidated",
// "validated",
// "validated_with_changes",
"skipped",
"draft",
"rejected"
];
const ITEM_HEIGHT = 48;
const ITEM_PADDING_TOP = 8;
const MenuProps = {
Expand Down

0 comments on commit 2c8158d

Please sign in to comment.