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
2 changed files with 2 additions and 2 deletions

View File

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

View File

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