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 all commits
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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,5 @@ dist
# TernJS port file
.tern-port

# mac os cache files
.DS_Store
# macOS cache files
.DS_Store
2 changes: 1 addition & 1 deletion config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module.exports = (() => {
const env = process.env.APPENV || "dev";

console.info(`APPENV: "${env}"`);
console.log(`APPENV: "${env}"`);

// for security reason don't let to require any arbitrary file defined in process.env
if (["prod", "dev"].indexOf(env) < 0) {
Expand Down
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