From 5c9701b00dde0ae6140b4dc902a30d46035b3786 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Wed, 1 Mar 2023 13:35:38 +0800 Subject: [PATCH] Left menu tweaks --- .../templates/homeFeed/LibraryFilterMenu.tsx | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx index c6e1ac2e9..cd699ef23 100644 --- a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx +++ b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx @@ -3,7 +3,7 @@ import { StyledText } from '../../elements/StyledText' import { Box, HStack, SpanBox, VStack } from '../../elements/LayoutPrimitives' import { Dropdown, DropdownOption } from '../../elements/DropdownElements' import { Button } from '../../elements/Button' -import { Circle, DotsThree, Plus } from 'phosphor-react' +import { CaretRight, Circle, DotsThree, Plus } from 'phosphor-react' import { useGetSubscriptionsQuery } from '../../../lib/networking/queries/useGetSubscriptionsQuery' import { useGetLabelsQuery } from '../../../lib/networking/queries/useGetLabelsQuery' import { Label } from '../../../lib/networking/fragments/labelFragment' @@ -205,14 +205,14 @@ function FilterButton(props: FilterButtonProps): JSX.Element { { props.setState(!props.state) @@ -366,6 +370,9 @@ function ViewAllButton(props: ViewAllButtonProps): JSX.Element { }} > {props.state ? 'Hide' : 'View All'} + {props.state ? null : ( + + )} ) }