mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-22 13:19:02 +00:00
Fix coordinator avatars orientation
This commit is contained in:
parent
d1699b3f61
commit
200efc5bc1
@ -283,7 +283,6 @@ const BookTable = ({
|
|||||||
shortAlias={params.row.coordinatorShortAlias}
|
shortAlias={params.row.coordinatorShortAlias}
|
||||||
style={{ width: '3.215em', height: '3.215em' }}
|
style={{ width: '3.215em', height: '3.215em' }}
|
||||||
smooth={true}
|
smooth={true}
|
||||||
flipHorizontally={true}
|
|
||||||
small={true}
|
small={true}
|
||||||
/>
|
/>
|
||||||
</ListItemAvatar>
|
</ListItemAvatar>
|
||||||
|
@ -76,6 +76,7 @@ const SelectCoordinator: React.FC<SelectCoordinatorProps> = ({ coordinator, setC
|
|||||||
shortAlias={coordinator}
|
shortAlias={coordinator}
|
||||||
style={{ width: '3em', height: '3em' }}
|
style={{ width: '3em', height: '3em' }}
|
||||||
smooth={true}
|
smooth={true}
|
||||||
|
flipHorizontally={false}
|
||||||
small={true}
|
small={true}
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
@ -269,7 +269,7 @@ const OrderDetails = ({
|
|||||||
{' '}
|
{' '}
|
||||||
<Grid container direction='row' justifyContent='center' alignItems='center'>
|
<Grid container direction='row' justifyContent='center' alignItems='center'>
|
||||||
<Grid item xs={2}>
|
<Grid item xs={2}>
|
||||||
<RobotAvatar shortAlias={coordinator.shortAlias} small={true} />
|
<RobotAvatar shortAlias={coordinator.shortAlias} small={true} smooth={true} />
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={4}>
|
<Grid item xs={4}>
|
||||||
<ListItemText primary={coordinator.longAlias} secondary={t('Order host')} />
|
<ListItemText primary={coordinator.longAlias} secondary={t('Order host')} />
|
||||||
|
Loading…
Reference in New Issue
Block a user