mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(editor): Hide tabs if only 1 branch (#3743)
This commit is contained in:
parent
c85faff4f1
commit
fb67543b2f
|
@ -29,7 +29,7 @@
|
|||
<slot name="run-info"></slot>
|
||||
</div>
|
||||
|
||||
<div v-if="maxOutputIndex > 0" :class="{[$style.tabs]: displayMode === 'table'}">
|
||||
<div v-if="maxOutputIndex > 0 && branches.length > 1" :class="{[$style.tabs]: displayMode === 'table'}">
|
||||
<n8n-tabs :value="currentOutputIndex" @input="onBranchChange" :options="branches" />
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue