diff --git a/app/page.tsx b/app/page.tsx index 48523cb..ec72ae1 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -17,7 +17,7 @@ export const Page = async () => { const locations = await db.collection("lokacije") .find({}) - .sort({ yearMonth: -1 }) // sort by yearMonth descending + .sort({ yearMonth: -1, name: 1 }) // sort by yearMonth descending .limit(20) .toArray();