Skip to content

Merge Develop to Master #3220

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 9 commits into from
Aug 15, 2019
5,406 changes: 3,151 additions & 2,255 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
"supertest": "^3.1.0",
"tc-accounts": "git+https://github.com/appirio-tech/accounts-app.git#dev",
"topcoder-react-lib": "0.7.11",
"topcoder-react-ui-kit": "^1.0.10",
"topcoder-react-ui-kit": "^1.0.11",
"topcoder-react-utils": "0.7.8",
"turndown": "^4.0.2",
"url-parse": "^1.4.1",
Expand Down
1 change: 1 addition & 0 deletions src/client/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ function authenticate(store) {
configureConnector({
connectorUrl: window.CONFIG.URL.ACCOUNTS_APP_CONNECTOR,
frameId: 'tc-accounts-iframe',
frameTitle: 'Accounts authentication window',
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@

// color: $tc-black;
font-size: 15px;
letter-spacing: 2px;
line-height: 25px;
margin-bottom: 30px;
word-spacing: 2.5px;
}

table {
Expand Down
4 changes: 2 additions & 2 deletions src/shared/components/SubmissionPage/Header/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ const Header = ({
Back to challenge
</p>
</Link>
<h2>
<h1>
{title}
</h2>
</h1>
</div>
);

Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/SubmissionPage/Header/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
}

h2 {
h1 {
font-weight: 300;
font-size: 24px;
color: #3d3d3d;
Expand Down
4 changes: 2 additions & 2 deletions src/shared/components/TopcoderHeader/Auth/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ export default function Auth({ column }) {
styleName="auth"
>
<a
role="button"
className="tc-btn-sm tc-btn-primary"
href={`${config.URL.AUTH}/member/registration?utm_source=community-app-main`}
role="button"
>
Join
</a>
<a
role="button"
className="tc-btn-sm tc-btn-default"
href={`${config.URL.AUTH}/member?utm_source=community-app-main`}
onClick={(event) => {
const retUrl = encodeURIComponent(window.location.href);
window.location = `${config.URL.AUTH}/member?retUrl=${retUrl}&utm_source=community-app-main`;
event.preventDefault();
}}
role="button"
>
Log In
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/challenge-detail/Header/Prizes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function Prizes({ pointPrizes, prizes }) {
role="figure"
aria-label={`${rank}${getOrdinal(rank)} prize is ${!_.isUndefined(prizes[index]) ? '$' : ''}${pair.join(' + ')}`}
>
<div id={`rank${rank}`} styleName="prize-card">
<div id={`rank${rank}`} styleName="prize-card" aria-hidden="true">
<p styleName="prize-rank">
{rank}
<span styleName="rank-ordinal">
Expand Down