mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-25 08:33:22 +03:00
Merge pull request #803 from notFloran/webui-hide-diskio-when-no-data
[WebUI] hide diskio when no data
This commit is contained in:
commit
116bb6b068
@ -49,7 +49,7 @@
|
|||||||
<div class="col-sm-6 sidebar" ng-show="!arguments.disable_left_sidebar">
|
<div class="col-sm-6 sidebar" ng-show="!arguments.disable_left_sidebar">
|
||||||
<div class="table">
|
<div class="table">
|
||||||
<section id="network" class="plugin table-row-group" ng-show="!arguments.disable_network" ng-include src="'plugins/network.html'"></section>
|
<section id="network" class="plugin table-row-group" ng-show="!arguments.disable_network" ng-include src="'plugins/network.html'"></section>
|
||||||
<section id="diskio" class="plugin table-row-group" ng-show="!arguments.disable_diskio" ng-include src="'plugins/diskio.html'"></section>
|
<section id="diskio" class="plugin table-row-group" ng-show="!arguments.disable_diskio && statsDiskio.disks.length > 0" ng-include src="'plugins/diskio.html'"></section>
|
||||||
<section id="fs" class="plugin table-row-group" ng-show="!arguments.disable_fs" ng-include src="'plugins/fs.html'"></section>
|
<section id="fs" class="plugin table-row-group" ng-show="!arguments.disable_fs" ng-include src="'plugins/fs.html'"></section>
|
||||||
<section id="folders" class="plugin table-row-group" ng-show="show.folders" ng-include src="'plugins/folders.html'"></section>
|
<section id="folders" class="plugin table-row-group" ng-show="show.folders" ng-include src="'plugins/folders.html'"></section>
|
||||||
<section id="raid" class="plugin table-row-group" ng-show="statsRaid.hasDisks()" ng-include src="'plugins/raid.html'"></section>
|
<section id="raid" class="plugin table-row-group" ng-show="statsRaid.hasDisks()" ng-include src="'plugins/raid.html'"></section>
|
||||||
|
Loading…
Reference in New Issue
Block a user