fix: fix node title visibility

This commit is contained in:
Alex Grozav 2023-07-18 15:00:10 +03:00
parent db23394c07
commit 14c5a74d29
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -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"