Skip to content

Commit 97e19bf

Browse files
committed
Phase ordering for multi-round challenges
1 parent 6388cdc commit 97e19bf

File tree

1 file changed

+1
-1
lines changed
  • src/components/ChallengeEditor/ChallengeView

1 file changed

+1
-1
lines changed

src/components/ChallengeEditor/ChallengeView/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ const ChallengeView = ({
207207
</>
208208
)}
209209
{
210-
phases.map((phase, index) => (
210+
_.sortBy(phases, ['scheduledEndDate']).map((phase, index) => (
211211
<PhaseInput
212212
phase={phase}
213213
phaseIndex={index}

0 commit comments

Comments
 (0)