Skip to content

Commit

Permalink
Merge pull request #6951 from topcoder-platform/metadata-fix
Browse files Browse the repository at this point in the history
Metadata fix -> dev
  • Loading branch information
kkartunov authored Dec 14, 2023
2 parents 27d2d40 + f46dc43 commit 45b42bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ workflows:
filters:
branches:
only:
- IC-13
- metadata-fix
# This is alternate dev env for parallel testing
- "build-qa":
context : org-global
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function ChallengeViewSelector(props) {
const { type, tags, metadata } = challenge;
const dashboardMetadata = _.find(metadata, { name: 'show_data_dashboard' });
if (dashboardMetadata) {
showDashboard = dashboardMetadata.value;
showDashboard = dashboardMetadata.value === 'true';
}

const [currentSelected, setCurrentSelected] = useState('Details');
Expand Down

0 comments on commit 45b42bf

Please sign in to comment.