Remove Due Date and Submitter columns from My Tickets view as these are not necessary

This commit is contained in:
Timothy Hobbs 2023-11-27 11:14:10 +01:00
parent 8f71bdac7a
commit e00e19625a

View File

@ -11,8 +11,6 @@
<th>Queue</th> <th>Queue</th>
<th>Status</th> <th>Status</th>
<th>Created</th> <th>Created</th>
<th>Due Date</th>
<th>Submitter</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -43,8 +41,6 @@ window.addEventListener('load', function()
<td>${ticket.queue.title}</td> <td>${ticket.queue.title}</td>
<td>${ticket.status}</td> <td>${ticket.status}</td>
<td>${ticket.created}</td> <td>${ticket.created}</td>
<td>${ticket.due_date ? ticket.due_date : 'N/A'}</td>
<td>${ticket.submitter}</td>
</tr> </tr>
`); `);
}); });