【发布时间】:2018-07-20 17:12:58
【问题描述】:
尝试设置图像字段的高度和宽度,并将其强制在周围的容器上,而不是在图像本身上。
const styles = {
profile: { height: 50, width: 50 }
}
export const UserList = withStyles(styles)(({ classes, permissions, ...props }) => (
<List actions={<UserListActions />} sort={{ field: 'lastName', order: 'ASC' }} title="All users" {...props} bulkActions={false}>
<Datagrid>
<ImageField source="imageUrl" label="Profile Picture" className={classes.profile} />
【问题讨论】:
标签: react-admin