We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e15e819 commit 74c7411Copy full SHA for 74c7411
site/frontend/src/pages/detailed-query/page.vue
@@ -39,7 +39,7 @@ const tableData = computed(() => {
39
const dataRows = rows.filter((row) => !row.isTotal);
40
41
// Sort data rows based on current sort column and direction
42
- const sortedDataRows = [...dataRows].sort((a, b) => {
+ const sortedDataRows = dataRows.sort((a, b) => {
43
let aValue: string | number;
44
let bValue: string | number;
45
let aSecondary: number | undefined;
0 commit comments