Skip to content

Commit 47a3656

Browse files
committed
fix
2 parents 02bfc31 + 0a4fca3 commit 47a3656

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-router-devtools",
33
"description": "Devtools for React Router - debug, trace, find hydration errors, catch bugs and inspect server/client data with react-router-devtools",
44
"author": "Alem Tuzlak",
5-
"version": "5.1.1",
5+
"version": "5.1.3",
66
"license": "MIT",
77
"keywords": [
88
"react-router",

src/client/layout/ContentPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const ContentPanel = ({ plugins }: ContentPanelProps) => {
2828
{!hideTimeline && (
2929
<Fragment>
3030
<div className="w-1 bg-gray-500/20" />
31-
<div className={clsx("z-10 hidden lg:block h-full w-1/3 p-2")}>
31+
<div className={clsx("z-10 hidden lg:block h-full w-1/3 p-2 overflow-y-auto")}>
3232
<TimelineTab />
3333
</div>
3434
</Fragment>

src/client/layout/MainPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const MainPanel = ({ children, isOpen, isEmbedded = false, className }: MainPane
4545
className
4646
)}
4747
>
48-
{panelLocation === "bottom" && (
48+
{panelLocation === "bottom" && !isEmbedded && (
4949
<div
5050
onMouseDown={enableResize}
5151
onMouseUp={disableResize}

0 commit comments

Comments
 (0)