diff --git a/resources/views/admin/nodes/index.blade.php b/resources/views/admin/nodes/index.blade.php index a4747b3fc..3b3a3fa48 100644 --- a/resources/views/admin/nodes/index.blade.php +++ b/resources/views/admin/nodes/index.blade.php @@ -53,8 +53,8 @@
Enter the maximum size of files that can be uploaded through the web-based file manager.
The maximum amount of memory allowed for this container. Setting this to 0
will allow unlimited memory in a container.
Setting this to 0
will disable swap space on this server. Setting to -1
will allow unlimited swap.
This server will not be allowed to boot if it is using more than this amount of space. If a server goes over this limit while running it will be safely stopped and locked until enough space is available. Set to 0
to allow unlimited disk usage.
The maximum amount of memory allowed for this container. Setting this to 0
will allow unlimited memory in a container.
Setting this to 0
will disable swap space on this server. Setting to -1
will allow unlimited swap.
This server will not be allowed to boot if it is using more than this amount of space. If a server goes over this limit while running it will be safely stopped and locked until enough space is available. Set to 0
to allow unlimited disk usage.
Unlimited
@else
- {{ $server->memory }}MB
+ {{ $server->memory }}MiB
@endif
/
@if($server->swap === 0)
@@ -86,7 +86,7 @@
@elseif($server->swap === -1)
Unlimited
@else
- {{ $server->swap }}MB
+ {{ $server->swap }}MiB
@endif