Skip to content
This repository has been archived by the owner on Jun 10, 2022. It is now read-only.

Commit

Permalink
change mb to kb
Browse files Browse the repository at this point in the history
change mb to kb
  • Loading branch information
徐长龙 committed Jul 17, 2017
1 parent d71a160 commit 87c83cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/src/main/resources/templates/dashboard.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,19 @@
<table class="table sorttable table-hover col-md-4">
<tr>
<td style="width: 110px">Memory Max:</td>
<td style="word-break:break-all;">${systemStatus.getMemoryMax()/(1024 * 1024)} Mb</td>
<td style="word-break:break-all;">${systemStatus.getMemoryMax()/(1024)} Kb</td>
</tr>
<tr>
<td style="width: 110px">Memory Total:</td>
<td style="word-break:break-all;">${systemStatus.getMemoryTotal()/(1024 * 1024)} Mb</td>
<td style="word-break:break-all;">${systemStatus.getMemoryTotal()/1024} Kb</td>
</tr>
<tr>
<td style="width: 110px">Memory Free:</td>
<td style="word-break:break-all;">${systemStatus.getMemoryFree()/(1024 * 1024)} Mb</td>
<td style="word-break:break-all;">${systemStatus.getMemoryFree()/1024} Kb</td>
</tr>
<tr>
<td style="width: 110px">Memory Used:</td>
<td style="word-break:break-all;">${systemStatus.getMemoryUsed()/(1024 * 1024)} Mb</td>
<td style="word-break:break-all;">${systemStatus.getMemoryUsed()/1024} Kb</td>
</tr>

</table>
Expand Down

0 comments on commit 87c83cc

Please sign in to comment.