Skip to content

Commit

Permalink
[fix] Fixed #172.
Browse files Browse the repository at this point in the history
  • Loading branch information
yoneyan committed May 28, 2023
1 parent ad6ca12 commit 426feaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/Group/GroupDetail/Group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -663,13 +663,13 @@ export function GroupStatus(props: {
<Grid container spacing={3}>
<Grid item xs={12}>
{data.expired_status === 1 && (
<Chip size="small" color="secondary" label={'ユーザより廃止'} />
<Chip size="small" color="secondary" label={'審査落ち'} />
)}
{data.expired_status === 2 && (
<Chip size="small" color="secondary" label={'運営委員より廃止'} />
<Chip size="small" color="secondary" label={'ユーザより廃止'} />
)}
{data.expired_status === 3 && (
<Chip size="small" color="secondary" label={'審査落ち'} />
<Chip size="small" color="secondary" label={'運営委員より廃止\n'} />
)}
<h4>Status</h4>
<Chip size="small" color="primary" label={GroupStatusStr(data)} />
Expand Down

0 comments on commit 426feaf

Please sign in to comment.