From 2eb7f1bf1488a083501b609fd9808e0c9d86441b Mon Sep 17 00:00:00 2001
From: Tom Zhao <tom.zhao@dsv.su.se>
Date: Mon, 2 Dec 2024 14:43:27 +0100
Subject: [PATCH] 3470: Write a-element in one line to avoid white spaces:

* since this component is put in a table cell, and when there are more than one component in the cell, the white spaces breaks the visual with additional underscore like character.
---
 .../se/su/dsv/scipro/forum/panels/AbstractReadStatePanel.html | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/view/src/main/java/se/su/dsv/scipro/forum/panels/AbstractReadStatePanel.html b/view/src/main/java/se/su/dsv/scipro/forum/panels/AbstractReadStatePanel.html
index 7e4d838121..0fb10bd9e4 100644
--- a/view/src/main/java/se/su/dsv/scipro/forum/panels/AbstractReadStatePanel.html
+++ b/view/src/main/java/se/su/dsv/scipro/forum/panels/AbstractReadStatePanel.html
@@ -6,9 +6,7 @@
 </head>
 <body>
 <wicket:panel>
-    <a wicket:id="toggle" href="#">
-        <span wicket:id="icon" class="fa fa-flag read-state"></span>
-    </a>
+    <a wicket:id="toggle" href="#"><span wicket:id="icon" class="fa fa-flag read-state"></span></a>
 </wicket:panel>
 </body>
 </html>
\ No newline at end of file