Skip to content

Commit a9ba6a6

Browse files
committed
fix: client list can not sort by idle time (#438)
1 parent 69752d2 commit a9ba6a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/content_value/ContentServerStatus.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ const clientTableColumns = computed(() => {
576576
{
577577
key: 'idle',
578578
title: () => i18n.t('status.client.idle'),
579-
sorter: (row1, row2) => row1.age - row2.age,
579+
sorter: (row1, row2) => row1.idle - row2.idle,
580580
align: 'center',
581581
titleAlign: 'center',
582582
render: ({ idle }, index) => {

0 commit comments

Comments
 (0)