Skip to content

Commit 9613864

Browse files
Merge pull request #5038 from topcoder-platform/issue-5037
Challenge Details - Fix allowStockArt to design track
2 parents 80cb5b3 + f2aba05 commit 9613864

File tree

1 file changed

+1
-1
lines changed
  • src/shared/components/challenge-detail/Specification

1 file changed

+1
-1
lines changed

src/shared/components/challenge-detail/Specification/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function ChallengeDetailsView(props) {
6161
let stockArtValue = '';
6262
const allowStockArt = _.find(metadata, { name: 'allowStockArt' });
6363
if (allowStockArt) {
64-
stockArtValue = allowStockArt.value;
64+
stockArtValue = allowStockArt.value === 'true';
6565
}
6666

6767
let environment = '';

0 commit comments

Comments
 (0)