mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 21:04:37 +03:00
[Feature] Add image count to gallery list (#429)
* Add imagecount to gallery list * Port to 2.5 Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
@@ -47,7 +47,7 @@ export const GalleryList: React.FC = () => {
|
||||
</Link>
|
||||
</td>
|
||||
<td className="d-none d-sm-block">
|
||||
<Link to={`/galleries/${gallery.id}`}>{gallery.path}</Link>
|
||||
<Link to={`/galleries/${gallery.id}`}>{gallery.path} ({gallery.files.length} {gallery.files.length === 1 ? 'image' : 'images'})</Link>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user