Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#1950 | repo experimental tag
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Oct 28, 2024
1 parent cb5f6d9 commit beecef8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/repos/RepoSummary.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ const RepoSummary = ({ repo, summary }) => {
<div>
<PropertyChip label={repo?.source_type || repo?.collection_type} sx={{margin: '4px 8px 4px 0'}} />
<AccessChip sx={{margin: '4px 8px 4px 0'}} public_access={repo?.public_access} />
<PropertyChip sx={{margin: '4px 8px 4px 0'}} label={t('repo.experimental')} icon={<ExperimentalIcon fontSize='inherit' />} />
{
repo?.experimental ?
<PropertyChip sx={{margin: '4px 8px 4px 0'}} label={t('repo.experimental')} icon={<ExperimentalIcon fontSize='inherit' />} /> :
null
}
</div>
<div style={{marginTop: '24px'}}>
<Typography sx={{color: '#000', fontSize: '16px', fontWeight: 'bold', marginBottom: '12px'}}>
Expand Down

0 comments on commit beecef8

Please sign in to comment.