From 973d217088d5a5a29828821471ccd39e60561407 Mon Sep 17 00:00:00 2001 From: "Luiz R. Rodrigues" Date: Thu, 16 Apr 2020 02:45:40 -0300 Subject: [PATCH 1/4] #4257: Challenge Header - Change numWinners to always return integer value --- src/shared/containers/challenge-detail/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} From 50fe4596b8c805686548c5756ed978db755d4bb3 Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Thu, 16 Apr 2020 11:21:55 +0530 Subject: [PATCH 2/4] ci: deploying on beta for QA --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5c9cd08cf3..29200993d8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -191,7 +191,7 @@ workflows: branches: only: - develop - - hot-fix-profile-issue + - hot-fix-legacy-mm # Production builds are exectuted # when PR is merged to the master # Don't change anything in this configuration From f466ef6821808308958b743ef9b3f770b2e557c4 Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Thu, 16 Apr 2020 11:24:14 +0530 Subject: [PATCH 3/4] deployong on beta --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 29200993d8..278b9c21ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -191,7 +191,7 @@ workflows: branches: only: - develop - - hot-fix-legacy-mm + - hotfix-legacy-mm # Production builds are exectuted # when PR is merged to the master # Don't change anything in this configuration From 6f0efd425509efde988c6ebc6d71916298632fae Mon Sep 17 00:00:00 2001 From: "Luiz R. Rodrigues" Date: Thu, 16 Apr 2020 07:04:39 -0300 Subject: [PATCH 4/4] Upgrade html-to-text version from 3.3.0 to 5.1.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",