Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

[DEV] Patch 1.5.3.1 #144

Merged
merged 7 commits into from
Apr 9, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: add JC status "topcoder-rejected"
  • Loading branch information
maxceem committed Apr 9, 2021
commit 20e3969b5577510649b561381f43163df448a695
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,6 @@ dist

# TernJS port file
.tern-port

# macOS files
.DS_Store
3 changes: 2 additions & 1 deletion src/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export const CANDIDATE_STATUS = {
SHORTLIST: "shortlist",
REJECTED: "rejected",
INTERVIEW: "interview",
TOPCODER_REJECTED: "topcoder-rejected",
};

/**
Expand Down Expand Up @@ -131,7 +132,7 @@ export const CANDIDATE_STATUS_FILTERS = [
key: CANDIDATE_STATUS_FILTER_KEY.NOT_INTERESTED,
buttonText: "Not Interested",
title: "Not Interested Candidates",
statuses: [CANDIDATE_STATUS.REJECTED],
statuses: [CANDIDATE_STATUS.REJECTED, CANDIDATE_STATUS.TOPCODER_REJECTED],
},
];

Expand Down