File tree Expand file tree Collapse file tree 1 file changed +15
-12
lines changed
packages/next/src/next-devtools/dev-overlay/components/devtools-panel Expand file tree Collapse file tree 1 file changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,10 @@ export function DevToolsPanel({
49
49
} }
50
50
>
51
51
{ /* TODO: Investigate why onClose on Dialog doesn't close when clicked outside. */ }
52
- < OverlayBackdrop data-nextjs-devtools-panel-overlay-backdrop onClick = { onClose } />
52
+ < OverlayBackdrop
53
+ data-nextjs-devtools-panel-overlay-backdrop
54
+ onClick = { onClose }
55
+ />
53
56
< Draggable
54
57
padding = { INDICATOR_PADDING }
55
58
onDragStart = { ( ) => { } }
@@ -59,17 +62,17 @@ export function DevToolsPanel({
59
62
setPosition ( p )
60
63
} }
61
64
>
62
- < Dialog
63
- data-nextjs-devtools-panel-dialog
64
- aria-labelledby = "nextjs__container_dev_tools_panel_label"
65
- aria-describedby = "nextjs__container_dev_tools_panel_desc"
66
- onClose = { onClose }
67
- >
68
- < DialogContent >
69
- < DialogHeader > </ DialogHeader >
70
- < DialogBody > </ DialogBody >
71
- </ DialogContent >
72
- </ Dialog >
65
+ < Dialog
66
+ data-nextjs-devtools-panel-dialog
67
+ aria-labelledby = "nextjs__container_dev_tools_panel_label"
68
+ aria-describedby = "nextjs__container_dev_tools_panel_desc"
69
+ onClose = { onClose }
70
+ >
71
+ < DialogContent >
72
+ < DialogHeader > </ DialogHeader >
73
+ < DialogBody > </ DialogBody >
74
+ </ DialogContent >
75
+ </ Dialog >
73
76
</ Draggable >
74
77
</ Overlay >
75
78
)
You can’t perform that action at this time.
0 commit comments