summaryrefslogtreecommitdiff
path: root/doc/invocations-http-server/templates/invocation.html
diff options
context:
space:
mode:
authorSascha Roloff <sascha.roloff@huawei.com>2025-05-14 19:27:25 +0200
committerSascha Roloff <sascha.roloff@huawei.com>2025-05-15 14:32:54 +0200
commitaa0d8efe37dd4a0a8105a28323b561b74a135bfe (patch)
treead28e0f1822e59e4b6c7527880df64956209e03c /doc/invocations-http-server/templates/invocation.html
parentbdd379a5cdbe84fd176c545bf11a319324c5c193 (diff)
downloadjustbuild-aa0d8efe37dd4a0a8105a28323b561b74a135bfe.tar.gz
Invocation server: add missing HTML-escape filters in templates
Diffstat (limited to 'doc/invocations-http-server/templates/invocation.html')
-rw-r--r--doc/invocations-http-server/templates/invocation.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html
index 12ff2736..8dd075e2 100644
--- a/doc/invocations-http-server/templates/invocation.html
+++ b/doc/invocations-http-server/templates/invocation.html
@@ -129,7 +129,7 @@ Inocations {{invocation | e}}
<ul>
{% for prop in remote_props %}
<li> <tt>{{ prop["key"] | e }}</tt> :
- <a href="/filterinvocations/remote/prop/{{ prop["key_hex"] | e }}/{{ prop["value_hex"] }}"><tt>{{ prop["value"] | e }}</tt></a>
+ <a href="/filterinvocations/remote/prop/{{ prop["key_hex"] | e }}/{{ prop["value_hex"] | e }}"><tt>{{ prop["value"] | e }}</tt></a>
</li>
{% endfor %}
</ul>
@@ -146,7 +146,7 @@ Inocations {{invocation | e}}
<ul>
{% for entry in context %}
<li> <tt>{{ entry["key"] | e }}</tt> :
- <a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ entry["value_hex"] }}"><tt>{{ entry["value"] | e }}</tt></a>
+ <a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ entry["value_hex"] | e }}"><tt>{{ entry["value"] | e }}</tt></a>
</li>
{% endfor %}
</ul>