Skip to content

Commit

Permalink
fix(ui): Set variant tag to lower case
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bui-Quang <[email protected]>
  • Loading branch information
pl-buiquang committed Oct 19, 2022
1 parent 31b5363 commit cb8b1c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/src/components/App/Studies/HeaderBottom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function HeaderBottom(props: PropTypes) {
)}
{filters.variant && (
<Chip
label={t("studies.variant")}
label={t("studies.variant").toLowerCase()}
color="secondary"
onDelete={() => setFilterValue("variant", false)}
sx={{ mx: 1 }}
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/App/Studies/StudyCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ const StudyCard = memo((props: Props) => {
{study.type === StudyType.VARIANT && (
<Chip
icon={<AltRouteOutlinedIcon />}
label={t("studies.variant")}
label={t("studies.variant").toLowerCase()}
color="primary"
/>
)}
Expand Down

0 comments on commit cb8b1c7

Please sign in to comment.