From 3b94863521b064978e12ace0e18561e8cb0b6c8b Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Mon, 30 Sep 2024 18:30:26 +0200 Subject: [PATCH] add sorting for job energy column --- web/frontend/src/generic/select/SortSelection.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/web/frontend/src/generic/select/SortSelection.svelte b/web/frontend/src/generic/select/SortSelection.svelte index 5125445..ae416d7 100644 --- a/web/frontend/src/generic/select/SortSelection.svelte +++ b/web/frontend/src/generic/select/SortSelection.svelte @@ -36,6 +36,7 @@ { field: "numNodes", type: "col", text: "Number of Nodes", order: "DESC" }, { field: "numHwthreads", type: "col", text: "Number of HWThreads", order: "DESC" }, { field: "numAcc", type: "col", text: "Number of Accelerators", order: "DESC" }, + { field: "energy", type: "col", text: "Total Energy", order: "DESC" }, ...getSortItems() ] }