mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +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,
|
numeric: false,
|
||||||
label: intl.formatMessage({ id: 'map.name', defaultMessage: 'Name' }),
|
label: intl.formatMessage({ id: 'map.name', defaultMessage: 'Name' }),
|
||||||
},
|
},
|
||||||
{ id: 'labels', numeric: false },
|
{
|
||||||
|
id: 'labels',
|
||||||
|
numeric: false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'createdBy',
|
id: 'createdBy',
|
||||||
numeric: false,
|
numeric: false,
|
||||||
label: intl.formatMessage({ id: 'map.creator', defaultMessage: 'Creator' }),
|
label: intl.formatMessage({ id: 'map.creator', defaultMessage: 'Creator' }),
|
||||||
style: { width: '70px', whiteSpace: 'nowrap' },
|
style: { width: '150px', whiteSpace: 'nowrap' },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'lastModificationTime',
|
id: 'lastModificationTime',
|
||||||
@ -440,7 +443,7 @@ export const MapsList = (props: MapsListProps): React.ReactElement => {
|
|||||||
<SearchIcon />
|
<SearchIcon />
|
||||||
</div>
|
</div>
|
||||||
<InputBase
|
<InputBase
|
||||||
placeholder={intl.formatMessage({ id: 'maps.search-action', defaultMessage:'Search ...' })}
|
placeholder={intl.formatMessage({ id: 'maps.search-action', defaultMessage: 'Search ...' })}
|
||||||
classes={{
|
classes={{
|
||||||
root: classes.searchInputRoot,
|
root: classes.searchInputRoot,
|
||||||
input: classes.searchInputInput,
|
input: classes.searchInputInput,
|
||||||
@ -549,7 +552,7 @@ export const MapsList = (props: MapsListProps): React.ReactElement => {
|
|||||||
</Tooltip>
|
</Tooltip>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
||||||
<TableCell className={classes.bodyCell}></TableCell>
|
<TableCell className={classes.bodyCell}>packages/webapp/src/components/maps-page/index.tsx</TableCell>
|
||||||
|
|
||||||
<TableCell className={classes.bodyCell}>
|
<TableCell className={classes.bodyCell}>
|
||||||
{row.createdBy}
|
{row.createdBy}
|
||||||
|
Loading…
Reference in New Issue
Block a user