diff --git a/.circleci/config.yml b/.circleci/config.yml index 5c9cd08cf3..278b9c21ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -191,7 +191,7 @@ workflows: branches: only: - develop - - hot-fix-profile-issue + - hotfix-legacy-mm # Production builds are exectuted # when PR is merged to the master # Don't change anything in this configuration diff --git a/package.json b/package.json index 0de6b09d56..7a67a068a6 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "focus-trap-react": "^6.0.0", "helmet": "^3.12.1", "highlight.js": "^9.18.1", - "html-to-text": "^3.3.0", + "html-to-text": "^5.1.1", "http-status-codes": "^1.3.2", "i18n-iso-countries": "^3.7.1", "immutable": "^3.8.2", diff --git a/src/shared/containers/challenge-detail/index.jsx b/src/shared/containers/challenge-detail/index.jsx index eaa5ff2061..44942bb27a 100644 --- a/src/shared/containers/challenge-detail/index.jsx +++ b/src/shared/containers/challenge-detail/index.jsx @@ -439,7 +439,7 @@ class ChallengeDetailPageContainer extends React.Component { challenge={challenge} challengeId={challengeId} challengesUrl={challengesUrl} - numWinners={!isLegacyMM && winners.length} + numWinners={isLegacyMM ? 0 : winners.length} showDeadlineDetail={showDeadlineDetail} onToggleDeadlines={this.onToggleDeadlines} onSelectorClicked={onSelectorClicked}