Revert "Order record sets by name"

This reverts commit 5bb33c04c3.
This commit is contained in:
Claudio Ortolina
2026-02-05 15:31:05 +00:00
parent 9f7b84ec2a
commit f86e9b6d5c
+1 -1
View File
@@ -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]