We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c044d commit 1f14386Copy full SHA for 1f14386
src/components/platformSelector/index.tsx
@@ -236,7 +236,10 @@ export function PlatformSelector({
236
title={`Sentry for ${storedPlatform.title ?? storedPlatform.key}`}
237
path=""
238
className={styles['active-platform-title']}
239
- />
+ >
240
+ {/* display chevron icon by adding a child element */}
241
+ <Fragment />
242
+ </SidebarLink>
243
</ul>
244
<hr />
245
</div>
src/components/sidebar/platformSidebar.tsx
@@ -53,6 +53,7 @@ export function PlatformSidebar({
53
title={`Sentry for ${(guide || platform).title}`}
54
exclude={[`/${pathRoot}/guides/`]}
55
headerClassName={headerClassName}
56
+ withChevron
57
/>
58
59
);
0 commit comments