Small UI Tweaks (#30)
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>MinIO Console Server</title>
|
||||
<title>MinIO Console</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "MinIO Console Server",
|
||||
"name": "MinIO Console",
|
||||
"icons": [
|
||||
{
|
||||
"src": "android-icon-36x36.png",
|
||||
|
||||
@@ -159,7 +159,8 @@ const Dashboard = ({ classes }: IDashboardProps) => {
|
||||
if (usage == undefined) {
|
||||
return 0;
|
||||
}
|
||||
return usage;
|
||||
|
||||
return usage.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
||||
};
|
||||
|
||||
return (
|
||||
|
||||
@@ -120,7 +120,7 @@ class Menu extends React.Component<MenuProps> {
|
||||
<ListItemIcon>
|
||||
<PermissionIcon />
|
||||
</ListItemIcon>
|
||||
<ListItemText primary="Policies" />
|
||||
<ListItemText primary="IAM Policies" />
|
||||
</ListItem>
|
||||
<ListItem button component={NavLink} to="/users">
|
||||
<ListItemIcon>
|
||||
|
||||
@@ -218,7 +218,7 @@ class Policies extends React.Component<IPoliciesProps, IPoliciesState> {
|
||||
/>
|
||||
<Grid container>
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6">Policies</Typography>
|
||||
<Typography variant="h6">IAM Policies</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={12}>
|
||||
<br />
|
||||
|
||||
Reference in New Issue
Block a user