mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
bug: fix table layout
This commit is contained in:
parent
61aaa670db
commit
e647748717
@ -113,12 +113,15 @@ function EnhancedTableHead(props: EnhancedTableProps) {
|
||||
numeric: false,
|
||||
label: intl.formatMessage({ id: 'map.name', defaultMessage: 'Name' }),
|
||||
},
|
||||
{ id: 'labels', numeric: false },
|
||||
{
|
||||
id: 'labels',
|
||||
numeric: false
|
||||
},
|
||||
{
|
||||
id: 'createdBy',
|
||||
numeric: false,
|
||||
label: intl.formatMessage({ id: 'map.creator', defaultMessage: 'Creator' }),
|
||||
style: { width: '70px', whiteSpace: 'nowrap' },
|
||||
style: { width: '150px', whiteSpace: 'nowrap' },
|
||||
},
|
||||
{
|
||||
id: 'lastModificationTime',
|
||||
@ -440,7 +443,7 @@ export const MapsList = (props: MapsListProps): React.ReactElement => {
|
||||
<SearchIcon />
|
||||
</div>
|
||||
<InputBase
|
||||
placeholder={intl.formatMessage({ id: 'maps.search-action', defaultMessage:'Search ...' })}
|
||||
placeholder={intl.formatMessage({ id: 'maps.search-action', defaultMessage: 'Search ...' })}
|
||||
classes={{
|
||||
root: classes.searchInputRoot,
|
||||
input: classes.searchInputInput,
|
||||
@ -549,7 +552,7 @@ export const MapsList = (props: MapsListProps): React.ReactElement => {
|
||||
</Tooltip>
|
||||
</TableCell>
|
||||
|
||||
<TableCell className={classes.bodyCell}></TableCell>
|
||||
<TableCell className={classes.bodyCell}>packages/webapp/src/components/maps-page/index.tsx</TableCell>
|
||||
|
||||
<TableCell className={classes.bodyCell}>
|
||||
{row.createdBy}
|
||||
|
Loading…
Reference in New Issue
Block a user