Skip to content

Commit c87b716

Browse files
Copilotphrocker
andcommitted
Fix Thymeleaf expression syntax error in integrations table
Co-authored-by: phrocker <[email protected]>
1 parent a00d0fb commit c87b716

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

api/src/main/resources/templates/sso/integrations/add_dashboard.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -242,18 +242,18 @@ <h3><i class="fas fa-plug me-2"></i>Active Integrations</h3>
242242
<tr th:each="s : ${existingIntegrations}">
243243
<td>
244244
<div class="d-flex align-items-center">
245-
<i th:class="${s.connectionType == 'github'} ? 'fa-brands fa-github me-2' :
246-
${s.connectionType == 'openai'} ? 'fa-solid fa-robot me-2' :
247-
${s.connectionType == 'jira'} ? 'fa-brands fa-jira me-2' : 'fa-solid fa-plug me-2'"
245+
<i th:class="${s.connectionType == 'github' ? 'fa-brands fa-github me-2' :
246+
s.connectionType == 'openai' ? 'fa-solid fa-robot me-2' :
247+
s.connectionType == 'jira' ? 'fa-brands fa-jira me-2' : 'fa-solid fa-plug me-2'}"
248248
style="color: #0d6efd;"></i>
249249
<span th:text="${s.name}"></span>
250250
</div>
251251
</td>
252252
<td>
253253
<span class="badge bg-primary"
254-
th:text="${s.connectionType == 'github'} ? 'GitHub' :
255-
${s.connectionType == 'openai'} ? 'OpenAI' :
256-
${s.connectionType == 'jira'} ? 'JIRA' : ${s.connectionType}">
254+
th:text="${s.connectionType == 'github' ? 'GitHub' :
255+
s.connectionType == 'openai' ? 'OpenAI' :
256+
s.connectionType == 'jira' ? 'JIRA' : s.connectionType}">
257257
</span>
258258
</td>
259259
<td>

0 commit comments

Comments
 (0)