Skip to content

Commit 3467c18

Browse files
committed
PROD-2760 #comment Fix issues with Timeline status in Bug hunt work
1 parent 398fde6 commit 3467c18

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src-ts/tools/work/work-lib/work-provider/work-functions/work-factory/work.factory.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,11 @@ function getProgress(challenge: Challenge, workStatus: WorkStatus): WorkProgress
548548
name: 'Submitted',
549549
},
550550
{
551-
date: getProgressStepDateStart(challenge, [ChallengePhaseName.registration]),
551+
date: getProgressStepDateStart(challenge, [
552+
ChallengePhaseName.specificationReview,
553+
ChallengePhaseName.specificationSubmission,
554+
ChallengePhaseName.registration
555+
]),
552556
name: 'Started',
553557
},
554558
{

src-ts/tools/work/work-lib/work-provider/work-functions/work-store/challenge-phase-name.enum.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
export enum ChallengePhaseName {
2+
specificationReview = 'Specification Review',
3+
specificationSubmission = 'Specification Submission',
24
appeals = 'Appeals',
35
appealsResponse = 'Appeals Response',
46
approval = 'Approval',

0 commit comments

Comments
 (0)