Skip to content

Commit

Permalink
changes chevron icon in menu to match pattern (up/down) of the rest o…
Browse files Browse the repository at this point in the history
…f the app
  • Loading branch information
elijahbenizzy committed Apr 1, 2024
1 parent 463186e commit b682362
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions telemetry/ui/src/components/nav/appcontainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import {
XMarkIcon,
ChatBubbleLeftEllipsisIcon,
ChevronLeftIcon,
ChevronRightIcon
ChevronRightIcon,
ChevronDownIcon
} from '@heroicons/react/24/outline';
import { ListBulletIcon } from '@heroicons/react/20/solid';
import { BreadCrumb } from './breadcrumb';
Expand Down Expand Up @@ -244,9 +245,9 @@ export const AppContainer = (props: { children: React.ReactNode }) => {
aria-hidden="true"
/>
{item.name}
<ChevronRightIcon
<ChevronDownIcon
className={classNames(
open ? 'rotate-90 text-gray-500' : 'text-gray-400',
open ? 'rotate-180 text-gray-500' : 'text-gray-400',
'ml-auto h-5 w-5 shrink-0'
)}
aria-hidden="true"
Expand Down

0 comments on commit b682362

Please sign in to comment.