From f86e9b6d5cbbd2409b6b207fe00ab7bf4517ae2a Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Thu, 5 Feb 2026 15:31:05 +0000 Subject: [PATCH] Revert "Order record sets by name" This reverts commit 5bb33c04c37feb3ffc9326079fea57af60bcfbaa. --- lib/music_library/record_sets.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/music_library/record_sets.ex b/lib/music_library/record_sets.ex index f0986637..2ce987de 100644 --- a/lib/music_library/record_sets.ex +++ b/lib/music_library/record_sets.ex @@ -9,7 +9,7 @@ defmodule MusicLibrary.RecordSets do limit = Keyword.get(opts, :limit, 20) from(rs in RecordSet, - order_by: [asc: rs.name], + order_by: [desc: rs.updated_at], offset: ^offset, limit: ^limit, preload: [items: :record]