Ensure that table statistics are sorted by size. #5564

This commit is contained in:
Aditya Toshniwal
2022-12-05 10:50:45 +05:30
committed by GitHub
parent be011a4f3d
commit 2fca1033a0
@@ -57,7 +57,7 @@ function getColumn(data, singleLineStatistics) {
if (!singleLineStatistics) {
if (!_.isUndefined(data)) {
data.forEach((row) => {
if (row.name == 'Size') {
if (row.name == gettext('Total Size')) {
column = {
Header: row.name,
accessor: row.name,