Skip to content

Commit 1f14386

Browse files
authored
feat: display chevron on platform link (#10906)
1 parent 94c044d commit 1f14386

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/components/platformSelector/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,10 @@ export function PlatformSelector({
236236
title={`Sentry for ${storedPlatform.title ?? storedPlatform.key}`}
237237
path=""
238238
className={styles['active-platform-title']}
239-
/>
239+
>
240+
{/* display chevron icon by adding a child element */}
241+
<Fragment />
242+
</SidebarLink>
240243
</ul>
241244
<hr />
242245
</div>

src/components/sidebar/platformSidebar.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export function PlatformSidebar({
5353
title={`Sentry for ${(guide || platform).title}`}
5454
exclude={[`/${pathRoot}/guides/`]}
5555
headerClassName={headerClassName}
56+
withChevron
5657
/>
5758
</ul>
5859
);

0 commit comments

Comments
 (0)