From 5b11e52b08c8c77619a3bd62c38f84954fb201d7 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Mon, 25 Nov 2024 12:15:36 +0100 Subject: [PATCH] ui: sync jobs: change default sorting to 'store' -> 'direction' -> 'id' instead of just the id, which makes the list in the global datastore view a bit more easier to digest (since it's now sorted by store first) Signed-off-by: Dominik Csapak --- www/config/SyncView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/config/SyncView.js b/www/config/SyncView.js index 7f68bf7c..3471100b 100644 --- a/www/config/SyncView.js +++ b/www/config/SyncView.js @@ -140,7 +140,7 @@ Ext.define('PBS.config.SyncJobView', { type: 'diff', autoDestroy: true, autoDestroyRstore: true, - sorters: 'id', + sorters: ['store', 'direction', 'id'], rstore: { type: 'update', storeid: 'pbs-sync-jobs-status',