Update ServerConsole.tsx
Added spaces to be properly spaced apart from current usage
This commit is contained in:
parent
4193c5f664
commit
4fee35e7e8
|
@ -110,7 +110,7 @@ export default () => {
|
||||||
className={'mr-1'}
|
className={'mr-1'}
|
||||||
/>
|
/>
|
||||||
{bytesToHuman(memory)}
|
{bytesToHuman(memory)}
|
||||||
<span className={'text-neutral-500'}>/ {server.limits.memory} MB</span>
|
<span className={'text-neutral-500'}> / {server.limits.memory} MB</span>
|
||||||
</p>
|
</p>
|
||||||
<p className={'text-xs mt-2'}>
|
<p className={'text-xs mt-2'}>
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
|
@ -119,7 +119,7 @@ export default () => {
|
||||||
className={'mr-1'}
|
className={'mr-1'}
|
||||||
/>
|
/>
|
||||||
{bytesToHuman(disk)}
|
{bytesToHuman(disk)}
|
||||||
<span className={'text-neutral-500'}>/ {server.limits.disk} MB</span>
|
<span className={'text-neutral-500'}> / {server.limits.disk} MB</span>
|
||||||
</p>
|
</p>
|
||||||
</TitledGreyBox>
|
</TitledGreyBox>
|
||||||
<Can action={[ 'control.start', 'control.stop', 'control.restart' ]} matchAny={true}>
|
<Can action={[ 'control.start', 'control.stop', 'control.restart' ]} matchAny={true}>
|
||||||
|
|
Loading…
Reference in New Issue