Skip to content

Commit 85b6cf1

Browse files
committed
Merge branch 'fix/s3-region-full-url' into testing
2 parents ef36888 + a520d74 commit 85b6cf1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

internal/api/ui/pages/programs.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222
let cacheWarm = false;
2323
let cacheStale = false;
2424
let cacheGeneratedAt = '';
25-
let sortState = { key: 'name', direction: 'asc' };
25+
// Default sort: freshest scope update first — that's the most actionable view
26+
// for a hunter (programs that just changed scope = lowest competition right now).
27+
let sortState = { key: 'latest', direction: 'desc' };
2628

2729
function esc(s) {
2830
return String(s).replace(/&/g, '&amp;').replace(/"/g, '&quot;').replace(/</g, '&lt;').replace(/>/g, '&gt;');

0 commit comments

Comments
 (0)