Skip to content

Commit a90de78

Browse files
Fix control creation status igual a none para el front (#23)
1 parent a31f8bc commit a90de78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

microsoft-integration/admin-tool/src/main/webapp/WEB-INF/templates/fragments/synchronizationRow.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<span th:if="${T(org.sakaiproject.microsoft.api.data.CreationStatus).KO != row.creationStatus && teamsMap[row.teamId] == null}" th:text="'???'"></span>
1616
<div th:if="${teamsMap[row.teamId] != null || T(org.sakaiproject.microsoft.api.data.CreationStatus).KO == row.creationStatus}" >
1717
<div th:switch="${row.creationStatus}" th:title="${row.creationStatus}">
18-
<div th:case="${T(org.sakaiproject.microsoft.api.data.CreationStatus).OK}"><span th:text="${teamsMap[row.teamId]?.name}"></span></div>
1918
<div th:case="${T(org.sakaiproject.microsoft.api.data.CreationStatus).KO}">
2019
<span th:text="#{error.general_failure}"></span>
2120
<i class="fa fa-solid fa-exclamation-triangle" style="color: #b53d3d;" th:title="#{error.general_failure}"></i>
@@ -24,6 +23,7 @@
2423
<span th:text="${teamsMap[row.teamId]?.name}" ></span>
2524
<i class="fa fa-solid fa-exclamation-triangle" style="color: #a89e03;" th:title="#{error.channel_number_limit_reached}"></i>
2625
</div>
26+
<div th:case="*"><span th:text="${teamsMap[row.teamId]?.name}"></span></div>
2727
</div>
2828
</div>
2929

0 commit comments

Comments
 (0)