mirror of
https://github.com/jpros/tacticalrmm-web.git
synced 2026-01-20 03:50:21 +00:00
fix sorting process cpu percentage. Fixes #831
This commit is contained in:
@@ -95,7 +95,7 @@ const columns = [
|
||||
field: "cpu_percent",
|
||||
align: "left",
|
||||
sortable: true,
|
||||
sort: (a, b, rowA, rowB) => parseInt(b) < parseInt(a),
|
||||
sort: (a, b, rowA, rowB) => parseFloat(b) < parseFloat(a),
|
||||
},
|
||||
{
|
||||
name: "membytes",
|
||||
|
||||
Reference in New Issue
Block a user