popover badges no longer have role="button"

Because they are not clickable.

The popover appears on focus and hover, not click, so indicating that it is a clickable element is not good.
This commit is contained in:
Corban-Lee Jones 2024-10-20 14:38:02 +01:00
parent 49711ccad1
commit c01b20c06a

View File

@ -589,7 +589,6 @@ const renderPopoverBadgesColumn = (items, iconClass) => {
$span.attr("data-bs-trigger", "hover focus");
$span.attr("data-bs-custom-class", "table-badge-popover")
$span.attr("data-bs-html", "true");
$span.attr("role", "button")
let $placeholderContainer = $("<div>");