diff --git a/src/plugins/network/index.js b/src/plugins/network/index.js index 79a2a9aaa..9491436d7 100644 --- a/src/plugins/network/index.js +++ b/src/plugins/network/index.js @@ -385,7 +385,7 @@ function calculateState( } } - rows.sort((a, b) => (String(a.sortKey) > String(b.sortKey) ? 1 : -1)); + rows.sort((a, b) => Number(a.sortKey) - Number(b.sortKey)); return { sortedRows: rows,