mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(editor): Do not show overlapping trash icon in the node's settings (#9119)
This commit is contained in:
parent
3bb821f10e
commit
c00150bb8f
|
@ -49,7 +49,7 @@
|
|||
class="multi-parameter"
|
||||
>
|
||||
<n8n-icon-button
|
||||
v-if="hideDelete !== true && !isReadOnly"
|
||||
v-if="hideDelete !== true && !isReadOnly && !parameter.isNodeSetting"
|
||||
type="tertiary"
|
||||
text
|
||||
size="mini"
|
||||
|
@ -131,7 +131,7 @@
|
|||
class="parameter-item"
|
||||
>
|
||||
<n8n-icon-button
|
||||
v-if="hideDelete !== true && !isReadOnly"
|
||||
v-if="hideDelete !== true && !isReadOnly && !parameter.isNodeSetting"
|
||||
type="tertiary"
|
||||
text
|
||||
size="mini"
|
||||
|
|
Loading…
Reference in a new issue