Skip to content

Commit f0e08c9

Browse files
authored
Merge Develop to Master (#3220)
Merge Develop to Master
2 parents 734942b + 7a45f90 commit f0e08c9

File tree

8 files changed

+3163
-2262
lines changed

8 files changed

+3163
-2262
lines changed

package-lock.json

+3,151-2,255
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
"supertest": "^3.1.0",
113113
"tc-accounts": "git+https://github.com/appirio-tech/accounts-app.git#dev",
114114
"topcoder-react-lib": "0.7.11",
115-
"topcoder-react-ui-kit": "^1.0.10",
115+
"topcoder-react-ui-kit": "^1.0.11",
116116
"topcoder-react-utils": "0.7.8",
117117
"turndown": "^4.0.2",
118118
"url-parse": "^1.4.1",

src/client/index.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ function authenticate(store) {
5959
configureConnector({
6060
connectorUrl: window.CONFIG.URL.ACCOUNTS_APP_CONNECTOR,
6161
frameId: 'tc-accounts-iframe',
62+
frameTitle: 'Accounts authentication window',
6263
});
6364
}
6465

src/shared/components/Contentful/ContentBlock/themes/general.scss

+4
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@
104104

105105
// color: $tc-black;
106106
font-size: 15px;
107+
letter-spacing: 2px;
108+
line-height: 25px;
109+
margin-bottom: 30px;
110+
word-spacing: 2.5px;
107111
}
108112

109113
table {

src/shared/components/SubmissionPage/Header/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ const Header = ({
2727
Back to challenge
2828
</p>
2929
</Link>
30-
<h2>
30+
<h1>
3131
{title}
32-
</h2>
32+
</h1>
3333
</div>
3434
);
3535

src/shared/components/SubmissionPage/Header/styles.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232
}
3333

34-
h2 {
34+
h1 {
3535
font-weight: 300;
3636
font-size: 24px;
3737
color: #3d3d3d;

src/shared/components/TopcoderHeader/Auth/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ export default function Auth({ column }) {
1717
styleName="auth"
1818
>
1919
<a
20+
role="button"
2021
className="tc-btn-sm tc-btn-primary"
2122
href={`${config.URL.AUTH}/member/registration?utm_source=community-app-main`}
22-
role="button"
2323
>
2424
Join
2525
</a>
2626
<a
27+
role="button"
2728
className="tc-btn-sm tc-btn-default"
2829
href={`${config.URL.AUTH}/member?utm_source=community-app-main`}
2930
onClick={(event) => {
3031
const retUrl = encodeURIComponent(window.location.href);
3132
window.location = `${config.URL.AUTH}/member?retUrl=${retUrl}&utm_source=community-app-main`;
3233
event.preventDefault();
3334
}}
34-
role="button"
3535
>
3636
Log In
3737
</a>

src/shared/components/challenge-detail/Header/Prizes.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default function Prizes({ pointPrizes, prizes }) {
3232
role="figure"
3333
aria-label={`${rank}${getOrdinal(rank)} prize is ${!_.isUndefined(prizes[index]) ? '$' : ''}${pair.join(' + ')}`}
3434
>
35-
<div id={`rank${rank}`} styleName="prize-card">
35+
<div id={`rank${rank}`} styleName="prize-card" aria-hidden="true">
3636
<p styleName="prize-rank">
3737
{rank}
3838
<span styleName="rank-ordinal">

0 commit comments

Comments
 (0)