Merge pull request #2063 from Sir3lit/adminoverview
Show Unlimited instead of 0MB for disk space on about page ( Admin Side )
This commit is contained in:
commit
9efac27020
1 changed files with 7 additions and 1 deletions
|
@ -97,7 +97,13 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Disk Space</td>
|
<td>Disk Space</td>
|
||||||
<td><code>{{ $server->disk }}MB</code></td>
|
<td>
|
||||||
|
@if($server->disk === 0)
|
||||||
|
<code>Unlimited</code>
|
||||||
|
@else
|
||||||
|
<code>{{ $server->disk }}MB</code>
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Block IO Weight</td>
|
<td>Block IO Weight</td>
|
||||||
|
|
Loading…
Add table
Reference in a new issue