mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-25 08:33:22 +03:00
Merge pull request #805 from nclsHart/fix-fs-long-name
[Web UI] Fix display issue in fs plugin with long device name
This commit is contained in:
commit
c9f453fd5e
@ -7,7 +7,7 @@
|
||||
<div class="table-cell">Total</div>
|
||||
</div>
|
||||
<div class="table-row" ng-repeat="fs in statsFs.fileSystems | orderBy: 'mnt_point'">
|
||||
<div class="table-cell text-left">{{ fs.mountPoint }} ({{ fs.name }})</div>
|
||||
<div class="table-cell text-left">{{ fs.mountPoint }} <span class="visible-lg-inline" ng-show="fs.name.length <= 20">({{ fs.name }})<span></div>
|
||||
<div class="table-cell" ng-class="statsFs.getDecoration(fs.mountPoint, 'used')">
|
||||
<span ng-show="!arguments.fs_free_space">{{ fs.used | bytes }}</span>
|
||||
<span ng-show="arguments.fs_free_space">{{ fs.free | bytes }}</span>
|
||||
|
Loading…
Reference in New Issue
Block a user