Change label to MB

This commit is contained in:
Girish Ramakrishnan
2020-05-14 21:56:22 -07:00
parent be489744c9
commit a8f5b5d4e4
2 changed files with 3 additions and 3 deletions

View File

@@ -824,9 +824,9 @@
<li><a href="" ng-click="graphs.setPeriod(24*30, '30 days')">30 days</a></li>
</ul>
</div>
<label style="margin-top: 10px;">Main Memory + Swap Usage in Megabytes</label>
<label style="margin-top: 10px;">Memory (RAM + Swap) in MB</label>
<canvas id="graphsMemoryChart" style="width: 100%;"></canvas>
<label>Disk Usage in Megabytes</label>
<label>Disk Usage in MB</label>
<canvas id="graphsDiskChart" style="width: 100%;"></canvas>
</div>
</div>

View File

@@ -102,7 +102,7 @@
<uib-tab index="1" heading="System Memory" select="graphs.show()">
<div class="card card-large" style="min-height: 300px;">
<label>Main Memory ({{ memory.memory | prettyDiskSize }}) + Swap ({{ memory.swap | prettyDiskSize }}) in Megabytes</label>
<label>RAM ({{ memory.memory | prettyDiskSize }}) + Swap ({{ memory.swap | prettyDiskSize }}) in MB</label>
<canvas id="graphsSystemMemoryChart" style="width: 100%;"></canvas>
App values are not stacked up
</div>