File tree Expand file tree Collapse file tree 3 files changed +19
-21
lines changed
packages/devtools/src/app Expand file tree Collapse file tree 3 files changed +19
-21
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ const codeDisplay = computed(() => {
113
113
</script >
114
114
115
115
<template >
116
- <div pt4 w-full min-w-full >
116
+ <div pt4 w-max >
117
117
<div v-if =" info.importers?.length" text-sm >
118
118
<div flex >
119
119
<VMenu >
Original file line number Diff line number Diff line change @@ -43,21 +43,19 @@ function selectFlowNode(v: boolean) {
43
43
</script >
44
44
45
45
<template >
46
- <div of-auto w-full h-full relative >
47
- <div v-if =" info" flex =" ~ col" w-full min-w-full >
48
- <FlowmapModuleFlow
49
- p4
50
- :info
51
- :session
52
- :transforms-loading
53
- @select =" selectFlowNode"
54
- />
55
- <ChartModuleFlamegraph
56
- :info
57
- :session =" session"
58
- :flow-node-selected =" flowNodeSelected"
59
- />
60
- </div >
61
- <VisualLoading v-else />
46
+ <div v-if =" info" flex =" ~ col" >
47
+ <FlowmapModuleFlow
48
+ p4
49
+ :info
50
+ :session
51
+ :transforms-loading
52
+ @select =" selectFlowNode"
53
+ />
54
+ <ChartModuleFlamegraph
55
+ :info
56
+ :session =" session"
57
+ :flow-node-selected =" flowNodeSelected"
58
+ />
62
59
</div >
60
+ <VisualLoading v-else />
63
61
</template >
Original file line number Diff line number Diff line change @@ -80,19 +80,19 @@ onMounted(async () => {
80
80
81
81
<div
82
82
v-if =" route.query.module" fixed inset-0
83
- backdrop-blur-5
84
- z-panel-content
83
+ backdrop-blur-5 z-panel-content
85
84
>
86
85
<div
87
86
:key =" (route.query.module as string)"
88
87
v-on-click-outside =" closeFlowPanel"
89
88
fixed right-0 bottom-0 top-20 z-panel-content
90
- w-250 of-scroll bg-glass border =" l t base rounded-tl-xl"
91
- max-w-90vw
89
+ of-scroll bg-glass border =" l t base rounded-tl-xl"
90
+ max-w-90vw min-w-250
92
91
>
93
92
<FlowmapModuleFlowLoader
94
93
:module =" (route.query.module as string)"
95
94
:session =" session"
95
+ w-max
96
96
/>
97
97
<DisplayCloseButton
98
98
absolute right-2 top-2
You can’t perform that action at this time.
0 commit comments