We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4fce9b commit 2a6bda4Copy full SHA for 2a6bda4
2 files changed
src/main/resources/static/css/config.css
@@ -0,0 +1,3 @@
1
+td.configInfoKey {
2
+ font-weight:bold;
3
+}
src/main/resources/templates/decorators/config.html
@@ -13,7 +13,7 @@
13
<h1 class="h2">Configuration</h1>
14
15
<div class="table-responsive">
16
- <table class="table table-sm history">
+ <table class="table table-sm config">
17
<thead>
18
<tr>
19
<th scope="col">Key</th>
@@ -23,7 +23,7 @@ <h1 class="h2">Configuration</h1>
23
<tbody>
24
<tr th:each="entry : *{configInfo}">
25
<td class="configInfoKey"><span th:text="${entry.key}"/></td>
26
- <td class="configInfoValue"><pre><code th:text="${entry.value}"/></pre></td>
+ <td class="configInfoValue"><small th:text="${entry.value}"/></td>
27
</tr>
28
</tbody>
29
</table>
0 commit comments