[style](trx-frontend-http): sort bookmark list by frequency

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-01 19:55:48 +01:00
parent 5dac587233
commit 18ebf24115
@@ -723,7 +723,7 @@ pub async fn list_bookmarks(
list.retain(|bm| bm.category.to_lowercase() == cat_lower);
}
}
list.sort_by(|a, b| a.name.cmp(&b.name));
list.sort_by_key(|bm| bm.freq_hz);
Ok(HttpResponse::Ok().json(list))
}