mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-27 19:25:27 +03:00
WebUI : fixe display of nice on windows
This commit is contained in:
parent
25816ceae7
commit
2a3d58620d
@ -34,7 +34,7 @@ glancesApp.service('GlancesPluginProcessList', function($filter, GlancesPlugin)
|
||||
}
|
||||
}
|
||||
|
||||
process.isNice = process.nice !== undefined && ((data['system'].os_name === 'Windows' && nice != 32) || (data['system'].os_name !== 'Windows' && process.nice != 0));
|
||||
process.isNice = process.nice !== undefined && ((data['system'].os_name === 'Windows' && process.nice != 32) || (data['system'].os_name !== 'Windows' && process.nice != 0));
|
||||
|
||||
this.processes.push(process);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user