summaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-01-12 13:49:54 +0100
committerPaul-Christian Volkmer2024-01-12 13:49:54 +0100
commit5d9d47c2df01049a3738acf9b0ae47f75fda913d (patch)
tree8ca0f9f92ed703c81da22a5f7bcd4779b98166a5 /src/main/resources
parent585468314c8af1f1a1a60e855dbeb81d834efee8 (diff)
fix: append css class, not css style
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/templates/configs.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/templates/configs.html b/src/main/resources/templates/configs.html
index cb78e3d..1048a39 100644
--- a/src/main/resources/templates/configs.html
+++ b/src/main/resources/templates/configs.html
@@ -46,7 +46,7 @@
</div>
<div class="connection-display border">
<img th:src="@{/server.png}" alt="ETL-Processor" />
- <span class="connection" th:styleappend="${connectionAvailable ? 'available' : ''}"></span>
+ <span class="connection" th:classappend="${connectionAvailable ? 'available' : ''}"></span>
<img th:if="${mtbFileSender.startsWith('Rest')}" th:src="@{/server.png}" alt="bwHC-Backend" />
<img th:if="${mtbFileSender.startsWith('Kafka')}" th:src="@{/kafka.png}" alt="Kafka-Broker" />
<span>ETL-Processor</span>