mirror of
https://github.com/nicolargo/glances.git
synced 2026-03-13 19:39:08 -04:00
Merge pull request #576 from notFloran/web-ui-order-fs
[Web UI] Order file systems by mount point
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<div class="table-cell">Used</div>
|
||||
<div class="table-cell">Total</div>
|
||||
</div>
|
||||
<div class="table-row" ng-repeat="fs in result['fs']">
|
||||
<div class="table-row" ng-repeat="fs in result['fs'] | orderBy: 'mnt_point'">
|
||||
<div class="table-cell text-left">{{fs.mnt_point}} ({{fs.device_name}})</div>
|
||||
<div class="table-cell" ng-class="getClass('fs', 'fs_', fs.percent, 0)">
|
||||
{{fs.size - fs.free | bytes}}
|
||||
|
||||
Reference in New Issue
Block a user