Skip to content

Commit

Permalink
fix(editor): Do not show overlapping trash icon in the node's settings (
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-radency committed Apr 11, 2024
1 parent 3bb821f commit c00150b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/editor-ui/src/components/ParameterInputList.vue
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit c00150b

Please sign in to comment.