Skip to content

Commit ccc0267

Browse files
committed
fix: use v-if for rendering unexpanded tools
1 parent c8f9e0c commit ccc0267

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom/ToolRenderer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/>
2626
</div>
2727
<transition name="expand">
28-
<div v-show="isInputOutputExpanded" class="max-h-72 space-y-3 overflow-y-auto pr-1">
28+
<div v-if="isInputOutputExpanded" v-show="isInputOutputExpanded" class="max-h-72 space-y-3 overflow-y-auto pr-1">
2929
<section
3030
v-for="section in toolSections"
3131
:key="section.label"

0 commit comments

Comments
 (0)