Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function handleClose() {
<Pane v-if="selected" size="55" min-size="10" max-size="90" class="!h-auto !of-visible">
<!-- the origin of the height: -->
<!-- DialogTopMargin (20) + HandleHeight (30) + padding (4*2) = 58 -->
<div v-on-click-outside="[handleClose, { ignore: ['.splitpanes__splitter'] }]" w-full h="[calc(100vh-(var(--spacing)*58))]" sticky top-4>
<div v-on-click-outside="[handleClose, { ignore: ['.splitpanes__splitter', '.flowmap-node-inline'] }]" w-full h="[calc(100vh-(var(--spacing)*58))]" sticky top-4>
<div absolute left-0 top="1/2" translate-x="-1/2" translate-y="-1/2" bg="#DFDFDF dark:#313131" h-10 w-2 rounded-full z-10 cursor-col-resize />
<ModuleFlowDetails
:selected="selected"
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-vite/src/app/components/flowmap/Node.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const expanded = defineModel<boolean>('expanded', { required: false, default: tr
:style="typeof props.lines?.bottom === 'number' ? `height: ${props.lines.bottom}px` : ''"
/>
<slot name="before" />
<div flex="~" :class="props.classNodeInline">
<div flex="~" w-max :class="props.classNodeInline" class="flowmap-node-inline">
<slot name="inline-before" />
<div
:class="[
Expand Down
Loading