We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c41ec commit db56ac3Copy full SHA for db56ac3
src/shared/components/challenge-detail/Specification/index.jsx
@@ -56,13 +56,13 @@ export default function ChallengeDetailsView(props) {
56
57
const allowStockArt = _.find(metadata, { type: 'allowStockArt' });
58
let environment = '';
59
- const environmentData = _.find(metadata, { type: 'environment' });
+ const environmentData = _.find(metadata, { name: 'environment' });
60
if (environmentData) {
61
environment = environmentData.value;
62
}
63
64
let codeRepo = '';
65
- const codeRepoData = _.find(metadata, { type: 'codeRepo' });
+ const codeRepoData = _.find(metadata, { name: 'codeRepo' });
66
if (codeRepoData) {
67
codeRepo = codeRepoData.value;
68
0 commit comments