diff --git a/src/background/background.js b/src/background/background.js index 5ac105a..f48fc3e 100644 --- a/src/background/background.js +++ b/src/background/background.js @@ -74,7 +74,7 @@ async function filterTicket() { // Comment collecting loop section // ******************************* const rlimit = 25; // Max number of requests to make. - const firstPage = `https://${url.hostname}/api/v2/tickets/${ticketID}/comments`; // URL of the first page of comments. + const firstPage = `https://${url.hostname}/api/v2/tickets/${ticketID}/comments?sort_order=desc`; // URL of the first page of comments. let nextPage = firstPage; // URL of the next page of comments. let r = 1; // Number of requests made. diff --git a/src/popup/popup.css b/src/popup/popup.css index d9ee2b7..535a60a 100644 --- a/src/popup/popup.css +++ b/src/popup/popup.css @@ -226,7 +226,7 @@ h3.list-header { ul.list-links, ul.list-attachments { display: flex; - flex-direction: column-reverse; + flex-direction: column; } li.list-item-links, li.list-item-attachments {