Skip to content

Commit df459f9

Browse files
authoredJun 22, 2024··
fix: scrollable sidebar (#682)
1 parent 9e9d695 commit df459f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/devtools/client/components/SideNav.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ onClickOutside(
9999
<div
100100
flex="~ auto col gap-0.5 items-center" w-full p1
101101
class="no-scrollbar"
102-
:class="{ 'of-x-hidden of-y-auto': !!sidebarExpanded }"
102+
:class="{ 'of-x-hidden of-y-auto': sidebarExpanded || sidebarScrollable }"
103103
>
104104
<template v-for="[name, tabs], idx of displayedTabs" :key="name">
105105
<template v-if="tabs.length">

0 commit comments

Comments
 (0)
Please sign in to comment.