Bug fix for file report sorting

This commit is contained in:
Scott Idem
2025-10-02 10:34:50 -04:00
parent 4aeded3a12
commit b5a6c15059
2 changed files with 2 additions and 2 deletions

View File

@@ -155,7 +155,7 @@ async function handle_qry__event_file(
enabled = rpt__hidden,
hidden = rpt__enabled,
limit = rpt__limit,
order_by_li = {'updated_on': 'DESC', 'priority': 'DESC', 'sort': 'DESC', 'filename': 'ASC', 'extension': 'ASC', 'created_on': 'DESC'},
order_by_li = {'priority': 'DESC', 'sort': 'DESC', 'created_on': 'DESC', 'updated_on': 'DESC', 'filename': 'ASC', 'extension': 'ASC', 'hosted_file_size': 'ASC'},
log_lvl = 0,
}: {
created_on_offset?: string | null,