Skip to content

Commit

Permalink
feat(ui): add studies archive tag (#2043)
Browse files Browse the repository at this point in the history
  • Loading branch information
hdinia authored May 30, 2024
1 parent a55f0b6 commit 30c4171
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions webapp/src/components/App/Studies/StudyCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,14 @@ const StudyCard = memo((props: Props) => {
},
}}
>
{study.archived && (
<Chip
icon={<ArchiveOutlinedIcon />}
label="archive"
color="warning"
size="small"
/>
)}
{study.type === StudyType.VARIANT && (
<Chip
icon={<AltRouteOutlinedIcon />}
Expand Down

0 comments on commit 30c4171

Please sign in to comment.