Change gallery icon to images (#1167)

This commit is contained in:
WithoutPants 2021-03-04 08:27:42 +11:00 committed by GitHub
parent bde5d07afb
commit 16da483674
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ const allMenuItems: IMenuItem[] = [
name: "galleries",
message: messages.galleries,
href: "/galleries",
icon: "image",
icon: "images",
},
{
name: "performers",

View File

@ -265,7 +265,7 @@ export const SceneCard: React.FC<ISceneCardProps> = (
return (
<HoverPopover placement="bottom" content={popoverContent}>
<Button className="minimal">
<Icon icon="image" />
<Icon icon="images" />
<span>{props.scene.galleries.length}</span>
</Button>
</HoverPopover>