mirror of
https://github.com/nicolargo/glances.git
synced 2026-03-16 12:58:13 -04:00
fix question mark display instead of zero as nice level in process list
This commit is contained in:
@@ -9,10 +9,10 @@ glancesApp.filter('min_size', function() {
|
||||
});
|
||||
glancesApp.filter('exclamation', function() {
|
||||
return function(input) {
|
||||
if (input == undefined || input =='') {
|
||||
return '?'
|
||||
if (input === undefined || input === '') {
|
||||
return '?';
|
||||
}
|
||||
return input
|
||||
return input;
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user