File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments