This commit is contained in:
Tomas Dvorak
2025-11-02 01:04:02 +01:00
parent ac886502e0
commit b9cea0cd77
153 changed files with 43713 additions and 1700 deletions
+8
View File
@@ -22,6 +22,7 @@ import { ChevronRight, ExternalLink, Calendar, Image as ImageIcon } from 'lucide
import MainLayout from '../components/layout/MainLayout';
import { API_URL } from '../services/api';
import PhotoModal from '../components/gallery/PhotoModal';
import CommentsSection from '../components/comments/CommentsSection';
interface Photo {
id: string;
@@ -287,6 +288,13 @@ const AlbumDetailPage: React.FC = () => {
</Text>
</Box>
)}
{/* Comments */}
{album.id && (
<Box mt={6}>
<CommentsSection targetType="gallery_album" targetId={String(album.id)} />
</Box>
)}
</Container>
</Box>