Skip to content

Release 2021/04/12 (v1.8.7) #5479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ workflows:
branches:
only:
- develop
- remove-outage-banner
# This is alternate dev env for parallel testing
- "build-test":
context : org-global
Expand Down Expand Up @@ -305,6 +306,7 @@ workflows:
branches:
only:
- develop
- remove-outage-banner
- "approve-smoke-test-on-staging":
type: approval
requires:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@ exports[`Matches shallow shapshot 1 shapshot 1 1`] = `
<Connect(Container)
setFilterState={[MockFunction]}
/>
<div
className="src-shared-components-challenge-listing-___style__outage-banner___JSVnq"
>
<strong>
Heads up!
</strong>
We will be doing testing work on our Community Platform on April 12, 2021 between 8:30-10:30 UTC-4. We will do our best to ensure a smooth experience for our users but please be aware there may be unforeseen issues during that time. Thank you!
</div>
<div
className="src-shared-components-challenge-listing-___style__tc-content-wrapper___1MqlF"
>
Expand Down Expand Up @@ -72,14 +64,6 @@ exports[`Matches shallow shapshot 2 shapshot 2 1`] = `
<Connect(Container)
setFilterState={[MockFunction]}
/>
<div
className="src-shared-components-challenge-listing-___style__outage-banner___JSVnq"
>
<strong>
Heads up!
</strong>
We will be doing testing work on our Community Platform on April 12, 2021 between 8:30-10:30 UTC-4. We will do our best to ensure a smooth experience for our users but please be aware there may be unforeseen issues during that time. Thank you!
</div>
<div
className="src-shared-components-challenge-listing-___style__tc-content-wrapper___1MqlF"
>
Expand Down
7 changes: 0 additions & 7 deletions src/shared/components/challenge-listing/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,6 @@ export default function ChallengeListing(props) {
)
}

<div styleName="outage-banner">
<strong>Heads up!</strong> We will be doing testing work on our Community Platform on
April 12, 2021 between 8:30-10:30 UTC-4. We will do our best to ensure a smooth experience
for our users but please be aware there may be unforeseen issues during that time.
Thank you!
</div>

<div styleName="tc-content-wrapper">
<div styleName={desktop ? 'sidebar-container-desktop' : 'sidebar-container-mobile'}>
<Sidebar
Expand Down
18 changes: 0 additions & 18 deletions src/shared/components/challenge-listing/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,21 +132,3 @@ $challenge-radius-4: $corner-radius * 2;
margin-left: 3px;
display: inline-block;
}

.outage-banner {
margin: 15px 15px 0 15px;
padding: 10px;
margin-bottom: -15px;

@include roboto-regular;

font-size: 13px;
line-height: 20px;
background-color: #fdf6d5;

strong {
color: $tc-red;
text-transform: uppercase;
font-weight: bold;
}
}
6 changes: 0 additions & 6 deletions src/shared/containers/challenge-detail/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -414,12 +414,6 @@ class ChallengeDetailPageContainer extends React.Component {

return (
<div styleName="outer-container">
<div styleName="outage-banner">
<strong>Heads up!</strong> We will be doing testing work on our Community Platform on
April 12, 2021 between 8:30-10:30 UTC-4. We will do our best to ensure a smooth experience
for our users but please be aware there may be unforeseen issues during that time.
Thank you!
</div>
<div styleName="challenge-detail-container" role="main">
{ Boolean(isEmpty) && (
<div styleName="page">
Expand Down
19 changes: 0 additions & 19 deletions src/shared/containers/challenge-detail/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,3 @@
text-align: center;
width: 100%;
}

.outage-banner {
margin: auto;
max-width: 1240px;
padding: 4 * $base-unit;
width: 100%;

@include roboto-regular;

font-size: 13px;
line-height: 20px;
background-color: #fdf6d5;

strong {
color: $tc-red;
text-transform: uppercase;
font-weight: bold;
}
}