From 82a2649e8d7d7a5cc81051c0a3520368a98cfbb2 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 14 Jan 2026 15:48:51 +0100 Subject: dashboard/app: improve AI UI A bag of minor assorted improvements to data formatting. + show job results in the jobs table --- pkg/html/pages/style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/html/pages/style.css b/pkg/html/pages/style.css index 8bc461882..cb1766df6 100644 --- a/pkg/html/pages/style.css +++ b/pkg/html/pages/style.css @@ -244,6 +244,10 @@ table td, table th { font-size: 75%; } +.list_table .ai_correct { + text-align: center; +} + .list_table .status-crashed { background-color: #FF8674; } @@ -388,7 +392,6 @@ aside { #ai_result_div { align: left; - width: 90%; margin: 0 0; overflow: scroll; border: 1px solid #777; @@ -399,6 +402,9 @@ aside { #ai_result_div pre { margin: 1px; font-family: 'Courier New', Courier, monospace; + max-width: 120ch; + white-space: pre-wrap; + overflow-wrap: break-word; } #ai_details_div pre { -- cgit mrf-deployment