This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
The following commit(s) were added to refs/heads/main by this push:
new 4647956 Fix the display of check data
4647956 is described below
commit 46479569c319735da3785d8e7fdf408c853ea422
Author: Sean B. Palmer <[email protected]>
AuthorDate: Tue Jan 13 16:18:03 2026 +0000
Fix the display of check data
---
atr/templates/report-selected-path.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/atr/templates/report-selected-path.html
b/atr/templates/report-selected-path.html
index 519415a..9040529 100644
--- a/atr/templates/report-selected-path.html
+++ b/atr/templates/report-selected-path.html
@@ -138,7 +138,7 @@
{% for key, value in primary_result.data.items() %}
{% if key != "debug_info" %}
<tr>
- <th class="bg-light fw-bold align-top">{{
key|replace('_', ' ') |title }}</th>
+ <th class="bg-light fw-bold align-top
text-nowrap">{{ key|replace('_', ' ') |title }}</th>
<td>
{% if value is boolean %}
{{ "Yes" if value else "No" }}
@@ -146,7 +146,7 @@
<table class="table table-sm mb-0">
{% for k, v in value.items() %}
<tr>
- <th class="bg-light fw-bold">{{
k|replace('_', ' ') |title }}</th>
+ <th class="bg-light fw-bold
text-nowrap">{{ k|replace('_', ' ') |title }}</th>
<td>
<pre class="atr-pre-wrap">{{ v
}}</pre>
</td>
@@ -186,7 +186,7 @@
{% if primary_result.data.get("debug_info") is
mapping %}
{% for debug_key, debug_value in
primary_result.data.debug_info.items() %}
<tr>
- <th class="bg-light fw-bold align-top">
+ <th class="bg-light fw-bold align-top
text-nowrap">
<span class="text-muted">(Debug)</span> {{
debug_key|replace('_', ' ') |title }}
</th>
<td>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]