ui(admin): change MB suffixes to MiB

Closes #4542
This commit is contained in:
Matthew Penner 2022-11-21 13:10:00 -07:00
parent c1584d9a5b
commit 2f4a60c961
No known key found for this signature in database
7 changed files with 17 additions and 17 deletions

View file

@ -170,7 +170,7 @@
<div class="input-group">
<input type="text" id="pMemory" name="memory" class="form-control" value="{{ old('memory') }}" />
<span class="input-group-addon">MB</span>
<span class="input-group-addon">MiB</span>
</div>
<p class="text-muted small">The maximum amount of memory allowed for this container. Setting this to <code>0</code> will allow unlimited memory in a container.</p>
@ -181,7 +181,7 @@
<div class="input-group">
<input type="text" id="pSwap" name="swap" class="form-control" value="{{ old('swap', 0) }}" />
<span class="input-group-addon">MB</span>
<span class="input-group-addon">MiB</span>
</div>
<p class="text-muted small">Setting this to <code>0</code> will disable swap space on this server. Setting to <code>-1</code> will allow unlimited swap.</p>
@ -194,7 +194,7 @@
<div class="input-group">
<input type="text" id="pDisk" name="disk" class="form-control" value="{{ old('disk') }}" />
<span class="input-group-addon">MB</span>
<span class="input-group-addon">MiB</span>
</div>
<p class="text-muted small">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 <code>0</code> to allow unlimited disk usage.</p>