Skip to content

Commit

Permalink
Adding aria label
Browse files Browse the repository at this point in the history
  • Loading branch information
mollerentornos committed Sep 6, 2024
1 parent 0b1d8b5 commit 0f29149
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
</div>
<div th:each="grouprow : ${siteRow.groupSynchronizationsList}" class="group-row row table-space" style="display: flex;">
<div class="col-lg-4" th:title="#{group.id(${grouprow.groupId})}" style="display: flex;justify-content: center; gap: 3px;">
<span th:text="${groupsMap[grouprow.groupId]?.title} ?: '???'"></span>
<span th:text="${groupsMap[grouprow.groupId]?.title} ?: '???'" th:aria-label="#{group.id(${grouprow.groupId})}"></span>
<div th:if="${T(org.sakaiproject.microsoft.api.data.SynchronizationStatus).ERROR == grouprow.status}" style="position: relative;">
<i class="fa fa-info" style="color: red;" th:aria-label="#{error.user_synchronization}" role="button" th:onclick="toggleErrorsDropdown('dropdown-' +[[${grouprow.groupId}]])"></i>
<div th:id="'dropdown-' + ${grouprow.groupId}" class="dropdown-content" style="display: none; position: absolute; background-color: #f9f9f9; overflow: auto; width: 340px; height: 165px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; align-items: center;padding: 10px; left: 20px;">
Expand Down

0 comments on commit 0f29149

Please sign in to comment.