From a32f6e2ac531f1744a0ecf296a8b5ffcd94d23bb Mon Sep 17 00:00:00 2001 From: Stefan Lendl Date: Thu, 18 Apr 2024 12:17:01 +0200 Subject: [PATCH] ui: order Prune & GC before Sync Jobs Make the order identical to local datastore view. Signed-off-by: Stefan Lendl Tested-by: Gabriel Goller Reviewd-by: Gabriel Goller Tested-by: Lukas Wagner Reviewed-by: Lukas Wagner --- www/datastore/DataStoreList.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/www/datastore/DataStoreList.js b/www/datastore/DataStoreList.js index a31a9b4b..fc68cfc1 100644 --- a/www/datastore/DataStoreList.js +++ b/www/datastore/DataStoreList.js @@ -231,17 +231,16 @@ Ext.define('PBS.datastore.DataStores', { xtype: 'pbsDataStoreList', iconCls: 'fa fa-book', }, - - { - iconCls: 'fa fa-refresh', - itemId: 'syncjobs', - xtype: 'pbsSyncJobView', - }, { iconCls: 'fa fa-trash-o', itemId: 'prunegc', xtype: 'pbsPruneAndGC', }, + { + iconCls: 'fa fa-refresh', + itemId: 'syncjobs', + xtype: 'pbsSyncJobView', + }, { iconCls: 'fa fa-check-circle', itemId: 'verifyjobs',