Actions
Improvement #11793
closedShow the newest certificates at the top of the table
Start date:
16/08/2024
Due date:
% Done:
100%
Estimated time:
Device Type:
Component:
Type:
Platform
Description
Description
Currently the newest adding certificates are showing at the bottom of the table(If there were lot of pages, we have to go to last page to see the certificate).
This can be accomplished by adding DESC to the query [1]
Current: query += "ORDER BY ID LIMIT ?,?";
Adding desc: query += "ORDER BY ID DESC LIMIT ?,?";
Actions