mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Fix tooltip opening delay prop name (#6776)
fix(editor): fix tooltip opening delay prop name
This commit is contained in:
parent
3aaf1ac0fd
commit
e19b0d7748
|
@ -38,7 +38,7 @@
|
|||
placement="right"
|
||||
:content="item.label"
|
||||
:disabled="!compact"
|
||||
:open-delay="tooltipDelay"
|
||||
:show-after="tooltipDelay"
|
||||
>
|
||||
<el-menu-item
|
||||
:id="item.id"
|
||||
|
@ -66,7 +66,7 @@
|
|||
:placement="item.secondaryIcon?.tooltip?.placement || 'right'"
|
||||
:content="item.secondaryIcon?.tooltip?.content"
|
||||
:disabled="compact || !item.secondaryIcon?.tooltip?.content"
|
||||
:open-delay="tooltipDelay"
|
||||
:show-after="tooltipDelay"
|
||||
>
|
||||
<n8n-icon :icon="item.secondaryIcon.name" :size="item.secondaryIcon.size || 'small'" />
|
||||
</n8n-tooltip>
|
||||
|
|
|
@ -141,7 +141,7 @@ const goToSourceControlSetup = async () => {
|
|||
{{ currentBranch }}
|
||||
</span>
|
||||
<div :class="{ 'pt-xs': !isCollapsed }">
|
||||
<n8n-tooltip :disabled="!isCollapsed" :open-delay="tooltipOpenDelay" placement="right">
|
||||
<n8n-tooltip :disabled="!isCollapsed" :show-after="tooltipOpenDelay" placement="right">
|
||||
<template #content>
|
||||
<div>
|
||||
{{ i18n.baseText('settings.sourceControl.button.pull') }}
|
||||
|
@ -163,7 +163,7 @@ const goToSourceControlSetup = async () => {
|
|||
<n8n-tooltip
|
||||
v-if="!sourceControlStore.preferences.branchReadOnly"
|
||||
:disabled="!isCollapsed"
|
||||
:open-delay="tooltipOpenDelay"
|
||||
:show-after="tooltipOpenDelay"
|
||||
placement="right"
|
||||
>
|
||||
<template #content>
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th v-for="(column, i) in tableData.columns || []" :key="column">
|
||||
<n8n-tooltip placement="bottom-start" :disabled="!mappingEnabled" :open-delay="1000">
|
||||
<n8n-tooltip placement="bottom-start" :disabled="!mappingEnabled" :show-after="1000">
|
||||
<template #content>
|
||||
<div>
|
||||
<img src="/static/data-mapping-gif.gif" />
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
:visible="showTooltip"
|
||||
:disabled="nodeCreatorStore.showScrim"
|
||||
:popper-class="$style.tooltip"
|
||||
:open-delay="700"
|
||||
:show-after="700"
|
||||
>
|
||||
<button :class="$style.button" @click="$emit('click')" data-test-id="canvas-plus-button">
|
||||
<font-awesome-icon icon="plus" size="lg" />
|
||||
|
|
Loading…
Reference in a new issue