diff --git a/ui/v2.5/src/components/Galleries/GalleryList.tsx b/ui/v2.5/src/components/Galleries/GalleryList.tsx
index 2565e478b..c5477e587 100644
--- a/ui/v2.5/src/components/Galleries/GalleryList.tsx
+++ b/ui/v2.5/src/components/Galleries/GalleryList.tsx
@@ -47,7 +47,7 @@ export const GalleryList: React.FC = () => {
- {gallery.path}
+ {gallery.path} ({gallery.files.length} {gallery.files.length === 1 ? 'image' : 'images'})
|
))}
diff --git a/ui/v2/src/components/Galleries/GalleryList.tsx b/ui/v2/src/components/Galleries/GalleryList.tsx
index 754382b55..3e3806f7e 100644
--- a/ui/v2/src/components/Galleries/GalleryList.tsx
+++ b/ui/v2/src/components/Galleries/GalleryList.tsx
@@ -38,7 +38,7 @@ export const GalleryList: FunctionComponent = (props: IProps) => {
{gallery.files.length > 0 ? : undefined}
- {gallery.path} |
+ {gallery.path} ({gallery.files.length} {gallery.files.length === 1 ? 'image' : 'images'}) |
))}