Skip to content

Commit a9bf4c2

Browse files
Fixed a sorting issue in the system stats memory usage table. #9332
1 parent a5e9315 commit a9bf4c2

File tree

1 file changed

+2
-0
lines changed
  • web/pgadmin/dashboard/static/js/SystemStats

1 file changed

+2
-0
lines changed

web/pgadmin/dashboard/static/js/SystemStats/Memory.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,15 @@ export default function Memory({preferences, sid, did, pageVisible, enablePoll=t
6161
enableSorting: true,
6262
enableResizing: true,
6363
enableFilters: true,
64+
sortingFn: 'alphanumeric',
6465
},
6566
{
6667
header: gettext('Memory bytes'),
6768
accessorKey: 'memory_bytes',
6869
enableSorting: true,
6970
enableResizing: true,
7071
enableFilters: true,
72+
sortingFn: 'alphanumeric',
7173
},
7274
];
7375

0 commit comments

Comments
 (0)