Merge pull request #1232 from DavidVadnais/BUG-1231-my-tickets

Fix for my-tickets div not appending to DOM
This commit is contained in:
Christopher Broderick 2025-03-04 20:49:14 +00:00 committed by GitHub
commit 836dc6c5be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ window.addEventListener('load', function()
$.get(endpoint, function(data) {
$('#ticketsTable tbody').empty();
data.results.forEach(function(ticket) {
ticket.title = $('div').text(ticket.title).html();
ticket.title = $('<div>').html(ticket.title).html();
$('#ticketsTable tbody').append(`
<tr>
<td>