We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d35c83 commit e88be08Copy full SHA for e88be08
src/shared/components/challenge-detail/Header/index.jsx
@@ -80,7 +80,7 @@ export default function ChallengeHeader(props) {
80
81
const tags = challenge.tags || [];
82
83
- const allPhases = challenge.phases || [];
+ const allPhases = _.filter(challenge.phases || [], p => p.name !== 'Post-Mortem');
84
const sortedAllPhases = _.cloneDeep(allPhases)
85
.sort((a, b) => moment(phaseEndDate(a)).diff(phaseEndDate(b)));
86
0 commit comments