Merge pull request #666 from notFloran/webui-fix-processes-io-write

[WebUI] fix io write in the process list
pull/668/head
Nicolas Hennion 2015-09-08 22:02:30 +02:00
commit 4f6f56563b
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
<span ng-show="process.timeplus.hours > 0" class="highlight">{{ process.timeplus.hours }}h</span>{{ process.timeplus.minutes | leftPad:2:'0' }}:{{ process.timeplus.seconds | leftPad:2:'0' }}<span ng-show="process.timeplus.hours <= 0">.{{ process.timeplus.milliseconds | leftPad:2:'0' }}</span>
</div>
<div class="table-cell hidden-xs hidden-sm">{{process.ioRead}}</div>
<div class="table-cell hidden-xs hidden-sm">{{process.iowrite}}</div>
<div class="table-cell hidden-xs hidden-sm">{{process.ioWrite}}</div>
<div class="table-cell text-left" ng-show="show.short_process_name">{{process.name}}</div>
<div class="table-cell text-left" ng-show="!show.short_process_name">{{process.cmdline}}</div>
</div>