Skip to content

Commit

Permalink
Feedback | Concepts | Associations and locales count not bold
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Sep 19, 2024
1 parent e8626a0 commit c9b92db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/concepts/Associations.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ const Associations = ({concept, mappings, reverseMappings}) => {

return (
<Paper className='col-xs-12 padding-0' sx={{boxShadow: 'none', border: '1px solid', borderColor: borderColor}}>
<Typography sx={{borderBottom: '1px solid', borderColor: borderColor, padding: '12px 16px', fontSize: '16px', color: 'surface.contrastText', fontWeight: 'bold', display: 'flex', justifyContent: 'space-between'}}>
<span>{t('concept.associations')}</span>
<Typography sx={{borderBottom: '1px solid', borderColor: borderColor, padding: '12px 16px', fontSize: '16px', color: 'surface.contrastText', display: 'flex', justifyContent: 'space-between'}}>
<span style={{fontWeight: 'bold'}}>{t('concept.associations')}</span>
<span>{count}</span>
</Typography>
{
Expand Down
4 changes: 2 additions & 2 deletions src/components/concepts/Locales.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ const Locales = ({ concept, locales, title, repo }) => {

return (
<Paper className='col-xs-12 padding-0' sx={{boxShadow: 'none', border: '1px solid', borderColor: borderColor}}>
<Typography sx={{borderBottom: '1px solid', borderColor: borderColor, padding: '12px 16px', fontSize: '16px', color: 'surface.contrastText', fontWeight: 'bold', display: 'flex', justifyContent: 'space-between'}}>
<span>{title}</span>
<Typography sx={{borderBottom: '1px solid', borderColor: borderColor, padding: '12px 16px', fontSize: '16px', color: 'surface.contrastText', display: 'flex', justifyContent: 'space-between'}}>
<span style={{fontWeight: 'bold'}}>{title}</span>
<span>{locales?.length}</span>
</Typography>
<List
Expand Down

0 comments on commit c9b92db

Please sign in to comment.