Skip to content

Fix undefined stylename #4790

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 1 commit into from Aug 20, 2020
Merged
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
28 changes: 14 additions & 14 deletions src/shared/components/challenge-detail/Specification/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export default function ChallengeDetailsView(props) {
description
&& (
<article>
<h2 styleName="h2">
<h2>
Challenge Overview
</h2>
{
Expand All @@ -195,7 +195,7 @@ export default function ChallengeDetailsView(props) {
finalSubmissionGuidelines
&& (
<article>
<h2 styleName="h2">
<h2>
Final Submission Guidelines
</h2>
{
Expand Down Expand Up @@ -228,7 +228,7 @@ export default function ChallengeDetailsView(props) {
description
&& (
<article>
<h2 styleName="h2">
<h2>
Challenge Summary
</h2>
{
Expand All @@ -246,8 +246,8 @@ export default function ChallengeDetailsView(props) {
/>
)
}
<p styleName="p" />
<p styleName="p note">
<p />
<p styleName="note">
Please read the challenge specification carefully and
watch the forums for any questions or feedback
concerning this challenge. It is important that you
Expand All @@ -259,10 +259,10 @@ export default function ChallengeDetailsView(props) {
)
}
<article>
<h2 styleName="h2">
<h2>
Stock Photography
</h2>
<p styleName="p">
<p>
{stockArtText}
&nbsp;
<a href={config.URL.INFO.STOCK_ART_POLICY}>
Expand All @@ -271,10 +271,10 @@ export default function ChallengeDetailsView(props) {
</p>
</article>
<article>
<h2 styleName="h2">
<h2>
How To Submit
</h2>
<ul styleName="ul">
<ul>
<li>
New to Studio?
&zwnj;
Expand Down Expand Up @@ -311,10 +311,10 @@ export default function ChallengeDetailsView(props) {
</article>

<article>
<h2 styleName="h2">
<h2>
Winner Selection
</h2>
<p styleName="p">
<p>
Submissions are viewable to the client as they are entered
into the challenge. Winners are selected by the client and
are chosen solely at the client&apos;s discretion.
Expand All @@ -324,13 +324,13 @@ export default function ChallengeDetailsView(props) {
)
}
<article>
<h2 styleName="h2">
<h2>
Payments
</h2>
{
isWipro ? (
<div>
<p styleName="p">
<p>
For employees of Wipro Technologies, following are the
payment terms. Winner/s would be awarded the prize money on
successful completion and acceptance of the submission by
Expand All @@ -354,7 +354,7 @@ export default function ChallengeDetailsView(props) {
</p>
</div>
) : (
<p styleName="p">
<p>
Topcoder will compensate members in accordance with our standard payment policies, unless
otherwise specified in this challenge. For information on payment policies, setting up your profile to
receive payments, and general payment questions, please refer to
Expand Down