Open tickets on mobile close filter sidebar

Added line to close the filter sidebar when selecting a ticket to open on a mobile screen.
This commit is contained in:
Corban-Lee Jones 2024-01-16 16:21:14 +00:00
parent b8751ba315
commit dc21810add

View File

@ -260,6 +260,7 @@ function applyTicketClickFunction() {
$(".email-list-item").on("click", function(e) {
e.preventDefault();
displayTicket(this);
$('.email-app').removeClass('side-active');
$('.email-content').toggleClass('open');
});
}