Small UI Tweaks (#30)

This commit is contained in:
Daniel Valdivia
2020-04-06 10:32:10 -07:00
committed by GitHub
parent e33615a9f6
commit b85c2c744d
5 changed files with 6 additions and 5 deletions

View File

@@ -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>

View File

@@ -1,5 +1,5 @@
{
"name": "MinIO Console Server",
"name": "MinIO Console",
"icons": [
{
"src": "android-icon-36x36.png",

View File

@@ -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 (

View File

@@ -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>

View File

@@ -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 />