Fix css bug

This commit is contained in:
2025-07-12 13:16:40 +02:00
parent eb97b38fef
commit 9df0f69e78
6 changed files with 16 additions and 10 deletions

View File

@ -23,7 +23,7 @@ export default async function GalleryPage({ params }: { params: { gallerySlug: s
include: {
images: {
include: { colors: { include: { color: true } } },
orderBy: [{ sortIndex: 'asc' }, { imageName: 'asc' }]
orderBy: [{ sortIndex: 'asc' }, { creationDate: 'desc' }, { imageName: 'asc' }]
},
}
})