mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix: fix node title visibility
This commit is contained in:
parent
db23394c07
commit
14c5a74d29
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<span :class="$style.container" data-test-id="node-title-container" @click="onEdit">
|
<span :class="$style.container" data-test-id="node-title-container" @click="onEdit">
|
||||||
<span :class="$style.iconWrapper"><NodeIcon :nodeType="nodeType" :size="18" /></span>
|
<span :class="$style.iconWrapper"><NodeIcon :nodeType="nodeType" :size="18" /></span>
|
||||||
<n8n-popover placement="right" width="200" :modelValue="editName" :disabled="!editable">
|
<n8n-popover placement="right" width="200" :visible="editName" :disabled="!editable">
|
||||||
<div
|
<div
|
||||||
:class="$style.editContainer"
|
:class="$style.editContainer"
|
||||||
@keydown.enter="onRename"
|
@keydown.enter="onRename"
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
placement="bottom"
|
placement="bottom"
|
||||||
:width="width"
|
:width="width"
|
||||||
:popper-class="$style.popover"
|
:popper-class="$style.popover"
|
||||||
:modelValue="show"
|
:visible="show"
|
||||||
trigger="manual"
|
trigger="manual"
|
||||||
data-test-id="resource-locator-dropdown"
|
data-test-id="resource-locator-dropdown"
|
||||||
v-on-click-outside="onClickOutside"
|
v-on-click-outside="onClickOutside"
|
||||||
|
|
Loading…
Reference in a new issue