From b6f0faa97fdd1073c5f143d7ea5407d699c3077f Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Thu, 15 Jan 2026 15:47:40 +0100 Subject: [PATCH] Make polarplot default in Jobview --- web/web.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/web.go b/web/web.go index b4c3749a..66df18b5 100644 --- a/web/web.go +++ b/web/web.go @@ -77,14 +77,14 @@ type PlotConfiguration struct { var UIDefaults = WebConfig{ JobList: JobListConfig{ UsePaging: false, - ShowFootprint: true, + ShowFootprint: false, }, NodeList: NodeListConfig{ UsePaging: true, }, JobView: JobViewConfig{ ShowPolarPlot: true, - ShowFootprint: true, + ShowFootprint: false, ShowRoofline: true, ShowStatTable: true, },