summaryrefslogtreecommitdiffstats
path: root/glances/outputs/static/js/components/plugin-gpu/view.html
diff options
context:
space:
mode:
Diffstat (limited to 'glances/outputs/static/js/components/plugin-gpu/view.html')
-rw-r--r--glances/outputs/static/js/components/plugin-gpu/view.html17
1 files changed, 8 insertions, 9 deletions
diff --git a/glances/outputs/static/js/components/plugin-gpu/view.html b/glances/outputs/static/js/components/plugin-gpu/view.html
index bdbf1695..bcbb986d 100644
--- a/glances/outputs/static/js/components/plugin-gpu/view.html
+++ b/glances/outputs/static/js/components/plugin-gpu/view.html
@@ -5,27 +5,26 @@
<div class="table">
<div class="table-row" ng-if="arguments.meangpu || vm.gpus.length === 1">
<div class="table-cell text-left">proc:</div>
- <div class="table-cell" ng-class="vm.getMeanDecoration('proc')" ng-if="vm.mean.proc">{{ vm.mean.proc |
+ <div class="table-cell" ng-class="vm.getMeanDecoration('proc')" ng-if="vm.mean.proc != null">{{ vm.mean.proc |
number : 0 }}%
</div>
- <div class="table-cell" ng-if="!vm.mean.proc">N/A</div>
+ <div class="table-cell" ng-if="vm.mean.proc == null">N/A</div>
</div>
<div class="table-row" ng-if="arguments.meangpu || vm.gpus.length === 1">
<div class="table-cell text-left">mem:</div>
- <div class="table-cell" ng-class="vm.getMeanDecoration('mem')" ng-if="vm.mean.mem">{{ vm.mean.mem | number :
+ <div class="table-cell" ng-class="vm.getMeanDecoration('mem')" ng-if="vm.mean.mem != null">{{ vm.mean.mem | number :
0 }}%
</div>
- <div class="table-cell" ng-if="!vm.mean.mem">N/A</div>
+ <div class="table-cell" ng-if="vm.mean.mem == null">N/A</div>
</div>
<div class="table-row" ng-if="!arguments.meangpu && vm.gpus.length > 1" ng-repeat="gpu in vm.gpus">
<div class="table-cell text-left">
{{ gpu.gpu_id }}:
- <span ng-class="vm.getDecoration(gpu.gpu_id, 'proc')"
- ng-if="gpu.proc">{{ gpu.proc | number : 0 }}%</span>
- <span ng-if="!gpu.proc">N/A</span>
+ <span ng-class="vm.getDecoration(gpu.gpu_id, 'proc')" ng-if="gpu.proc != null">{{ gpu.proc | number : 0 }}%</span>
+ <span ng-if="gpu.proc == null">N/A</span>
mem:
- <span ng-class="vm.getDecoration(gpu.gpu_id, 'mem')" ng-if="gpu.mem">{{ gpu.mem | number : 0 }}%</span>
- <span ng-if="!gpu.mem">N/A</span>
+ <span ng-class="vm.getDecoration(gpu.gpu_id, 'mem')" ng-if="gpu.mem != null">{{ gpu.mem | number : 0 }}%</span>
+ <span ng-if="gpu.mem == null">N/A</span>
</div>
</div>
</div>