Skip to content

Commit

Permalink
fix: capitalize the first letter of the dataset description in Datase…
Browse files Browse the repository at this point in the history
…tInfo component
  • Loading branch information
WTW0313 committed Dec 25, 2024
1 parent 93ccb30 commit 003a480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/app/components/app-sidebar/dataset-info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const DatasetInfo: FC<Props> = ({
{name}
</div>
<div className='mt-1 text-text-tertiary system-2xs-medium-uppercase'>{isExternal ? t('dataset.externalTag') : t('dataset.localDocs')}</div>
<div className='my-3 system-xs-regular text-text-tertiary'>{description}</div>
<div className='my-3 system-xs-regular text-text-tertiary first-letter:capitalize'>{description}</div>
</div>
)}
{extraInfo}
Expand Down

0 comments on commit 003a480

Please sign in to comment.