Skip to content

Commit bd4093a

Browse files
committed
Merge branch 'develop' into #1631-BradfordDerby-credits
2 parents 6d5b61c + a63b157 commit bd4093a

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

src/frontend/src/pages/CreditsPage/CreditsPage.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ const CreditsPage: React.FC = () => {
145145
{ name: 'Megan Lai', color: '#52B2BF' },
146146
{ name: 'Eric Sun', color: '#FCCAED' },
147147
{ name: 'Yash Jayaprakash', color: '#66b2b2' },
148+
{ name: 'Maggie Chua', color: '#E6E6FA' },
148149
{ name: 'Bradford Derby', color: '#577DD5' }
149150
];
150151

src/frontend/src/pages/TeamsPage/TeamMembersPageBlock.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,32 +179,32 @@ const TeamMembersPageBlock: React.FC<TeamMembersPageBlockProps> = ({ team }) =>
179179

180180
const NonEditingHeadView = () => (
181181
<Grid container>
182-
<Grid item>
182+
<Grid item xs={11}>
183183
<DetailDisplay label="Head" content={fullNamePipe(team.head)} />
184184
</Grid>
185-
<Grid item mt={-1}>
185+
<Grid item xs={1} mt={-1} display={'flex'} justifyContent={'flex-end'}>
186186
{hasPerms && <IconButton children={<Edit />} onClick={() => setIsEditingHead(true)} />}
187187
</Grid>
188188
</Grid>
189189
);
190190

191191
const NonEditingLeadsView = () => (
192192
<Grid container>
193-
<Grid item xs={11} lg="auto">
193+
<Grid item xs={11}>
194194
<DetailDisplay label="Leads" content={team.leads.map((lead) => fullNamePipe(lead)).join(', ')} />
195195
</Grid>
196-
<Grid item xs={1} mt={-1}>
196+
<Grid item xs={1} mt={-1} display={'flex'} justifyContent={'flex-end'}>
197197
{hasPerms && <IconButton children={<Edit />} onClick={() => setIsEditingLeads(true)} />}
198198
</Grid>
199199
</Grid>
200200
);
201201

202202
const NonEditingMembersView = () => (
203203
<Grid container>
204-
<Grid item xs={11} lg="auto">
204+
<Grid item xs={11}>
205205
<DetailDisplay label="Members" content={team.members.map((member) => fullNamePipe(member)).join(', ')} />
206206
</Grid>
207-
<Grid item xs={1} mt={-1}>
207+
<Grid item xs={1} mt={-1} display={'flex'} justifyContent={'flex-end'}>
208208
{hasPerms && <IconButton children={<Edit />} onClick={() => setIsEditingMembers(true)} />}
209209
</Grid>
210210
</Grid>

0 commit comments

Comments
 (0)