From de3b3f49b7ef8f4c0970f9aff04474b1802a152e Mon Sep 17 00:00:00 2001 From: natalie beatty Date: Fri, 11 Sep 2026 11:24:10 -0400 Subject: [PATCH 1/2] improve Analysis Queue tab accessibility --- .../AppHost/AnalysisTaskTable.tsx | 2 +- .../SystemCenter/AppHost/FilesQueuedGraph.tsx | 25 +++++++++++++------ 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/AnalysisTaskTable.tsx b/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/AnalysisTaskTable.tsx index f5a20d142..165b943fc 100644 --- a/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/AnalysisTaskTable.tsx +++ b/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/AnalysisTaskTable.tsx @@ -185,4 +185,4 @@ const AnalysisTaskTable = () => { } -export default AnalysisTaskTable +export default AnalysisTaskTable; \ No newline at end of file diff --git a/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/FilesQueuedGraph.tsx b/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/FilesQueuedGraph.tsx index 02c882ed5..ae7c5aec1 100644 --- a/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/FilesQueuedGraph.tsx +++ b/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/FilesQueuedGraph.tsx @@ -139,7 +139,7 @@ const FilesProcessedGraph = (props: IProps) => { color={getPriorityColor(a.Priority)} showPoints={true} key={a.Priority} - lineStyle={'-'} + lineStyle={getPriorityLineStyle(a.Priority)} > )} @@ -162,21 +162,32 @@ const getPriorityText = (priority: number ) => { return "Normal"; if (priority == 3) return "High"; - if (priority == 2) + if (priority == 4) return "Manual"; - return "Unknown"; } const getPriorityColor = (priority: number) => { - if (priority == 3) // High Priority - return "#f8f9fa"; - if (priority == 2) //Normal Priority - return "#0dcaf0"; if (priority == 1) // Enumeration + return "#6c757d"; + if (priority == 2) // Normal Priority + return "#0dcaf0"; + if (priority == 3) // High Priority return "#0d6efd"; if (priority == 4) // Manual Requeue return "#ffc107"; return "#ffc107"; } + +const getPriorityLineStyle = (priority: number) => { + if (priority == 1) // Enumeration + return "solid"; + if (priority == 2) // Normal Priority + return "short-dash"; + if (priority == 3) // High Priority + return "dash"; + if (priority == 4) // Manual Requeue + return "long-dash"; + return "solid"; +} \ No newline at end of file From 2c3ea42b70d561066e061cfce7d3dd342adc5e6d Mon Sep 17 00:00:00 2001 From: natalie beatty Date: Fri, 11 Sep 2026 11:26:54 -0400 Subject: [PATCH 2/2] update pointers --- Source/Applications/SystemCenter/EventWidgets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Applications/SystemCenter/EventWidgets b/Source/Applications/SystemCenter/EventWidgets index c6484bbdc..abe4bbb53 160000 --- a/Source/Applications/SystemCenter/EventWidgets +++ b/Source/Applications/SystemCenter/EventWidgets @@ -1 +1 @@ -Subproject commit c6484bbdcbb6cdae0b434407593b46cecbeb5015 +Subproject commit abe4bbb5332b32f291c368878418feff526d05a8