fix: table overflow and word wrapping (#720)

- applications (table)
- clients (table)
- plugins (table, info card word wrapping, and card padding)

Co-authored-by: David Kalmakoff <david@localhost.localdomain>
This commit is contained in:
David Kalmakoff 2024-11-05 05:06:33 -06:00 committed by GitHub
parent 3f29dedd24
commit b08b5ae82c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 40 additions and 28 deletions

View File

@ -59,7 +59,7 @@ class Applications extends Component<Stores<'appStore'>> {
}
maxWidth={1000}>
<Grid item xs={12}>
<Paper elevation={6}>
<Paper elevation={6} style={{overflowX: 'auto'}}>
<Table id="app-table">
<TableHead>
<TableRow>

View File

@ -54,7 +54,7 @@ class Clients extends Component<Stores<'clientStore'>> {
</Button>
}>
<Grid item xs={12}>
<Paper elevation={6}>
<Paper elevation={6} style={{overflowX: 'auto'}}>
<Table id="client-table">
<TableHead>
<TableRow style={{textAlign: 'center'}}>

View File

@ -131,29 +131,41 @@ const PanelWrapper: React.FC<IPanelWrapperProps> = ({
}) => {
const Icon = icon;
return (
<Container style={{display: 'block', width: '100%', margin: '20px'}}>
<Typography variant="h5">
{Icon ? (
<span>
<Icon />
&nbsp;
</span>
) : null}
{name}
{refresh ? (
<Button
style={{float: 'right'}}
onClick={() => {
refresh();
}}>
<Refresh />
</Button>
) : null}
</Typography>
{description ? <Typography variant="subtitle1">{description}</Typography> : null}
<hr />
<div className={name.toLowerCase().trim().replace(/ /g, '-')}>{children}</div>
</Container>
<div
style={{
width: '100%',
paddingLeft: '16px',
paddingRight: '16px',
}}>
<Container
style={{
display: 'block',
width: '100%',
margin: '12px 0px',
}}>
<Typography variant="h5">
{Icon ? (
<span>
<Icon />
&nbsp;
</span>
) : null}
{name}
{refresh ? (
<Button
style={{float: 'right'}}
onClick={() => {
refresh();
}}>
<Refresh />
</Button>
) : null}
</Typography>
{description ? <Typography variant="subtitle1">{description}</Typography> : null}
<hr />
<div className={name.toLowerCase().trim().replace(/ /g, '-')}>{children}</div>
</Container>
</div>
);
};
@ -225,7 +237,7 @@ class PluginInfo extends Component<{pluginInfo: IPlugin}> {
},
} = this;
return (
<div>
<div style={{wordWrap: 'break-word'}}>
{name ? (
<Typography variant="body2" className="name">
Name: <span>{name}</span>

View File

@ -27,7 +27,7 @@ class Plugins extends Component<Stores<'pluginStore'>> {
return (
<DefaultPage title="Plugins" maxWidth={1000}>
<Grid item xs={12}>
<Paper elevation={6}>
<Paper elevation={6} style={{overflowX: 'auto'}}>
<Table id="plugin-table">
<TableHead>
<TableRow>

View File

@ -80,7 +80,7 @@ class Users extends Component<WithStyles<'wrapper'> & Stores<'userStore'>> {
</Button>
}>
<Grid item xs={12}>
<Paper elevation={6}>
<Paper elevation={6} style={{overflowX: 'auto'}}>
<Table id="user-table">
<TableHead>
<TableRow style={{textAlign: 'center'}}>