Skip to content

Commit

Permalink
Merge pull request #195 from AI4Bharat/btns
Browse files Browse the repository at this point in the history
allowing empty prompt for revised status in review and sc stage
  • Loading branch information
sagarika-padmanaban authored Dec 12, 2024
2 parents 96b632e + 56e0ff7 commit 4e278e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/ui/pages/chat/ReviewPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ const ReviewPage = () => {
"accepted_with_major_changes",
].includes(value)
) {
if (!["draft", "skipped", "delete", "delete-pair"].includes(value)) {
if (!["draft", "skipped", "delete", "delete-pair","to_be_revised"].includes(value)) {
console.log("answered variable: ");
console.log(answered, "kelo");

Expand Down
2 changes: 1 addition & 1 deletion src/app/ui/pages/chat/SuperCheckerPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ const SuperCheckerPage = () => {
) ||
["validated", "validated_with_changes"].includes(value)
) {
if (!["draft", "skipped", "delete", "delete-pair"].includes(value)) {
if (!["draft", "skipped", "delete", "delete-pair","to_be_revised"].includes(value)) {
console.log("answered variable: ");
if (
(ProjectDetails.project_type == "ModelInteractionEvaluation" ||
Expand Down

0 comments on commit 4e278e7

Please sign in to comment.