Skip to content

Commit

Permalink
feat: Playlists in a sidebar (#27519)
Browse files Browse the repository at this point in the history
  • Loading branch information
veryayskiy authored Jan 15, 2025
1 parent 076458f commit 3ef1d16
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions frontend/src/layout/navigation-3000/navigationLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,26 @@ export const navigation3000Logic = kea<navigation3000LogicType>([
label: 'Session replay',
icon: <IconRewindPlay />,
to: urls.replay(replayLandingPage),
sideAction: {
identifier: 'replay-dropdown',
dropdown: {
overlay: (
<LemonMenuOverlay
items={[
{
items: [
{
label: 'Playlists',
to: urls.replay(ReplayTabs.Playlists),
},
],
},
]}
/>
),
placement: 'bottom-end',
},
},
},
featureFlags[FEATURE_FLAGS.ERROR_TRACKING]
? {
Expand Down

0 comments on commit 3ef1d16

Please sign in to comment.