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"
|
placement="right"
|
||||||
:content="item.label"
|
:content="item.label"
|
||||||
:disabled="!compact"
|
:disabled="!compact"
|
||||||
:open-delay="tooltipDelay"
|
:show-after="tooltipDelay"
|
||||||
>
|
>
|
||||||
<el-menu-item
|
<el-menu-item
|
||||||
:id="item.id"
|
:id="item.id"
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
:placement="item.secondaryIcon?.tooltip?.placement || 'right'"
|
:placement="item.secondaryIcon?.tooltip?.placement || 'right'"
|
||||||
:content="item.secondaryIcon?.tooltip?.content"
|
:content="item.secondaryIcon?.tooltip?.content"
|
||||||
:disabled="compact || !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-icon :icon="item.secondaryIcon.name" :size="item.secondaryIcon.size || 'small'" />
|
||||||
</n8n-tooltip>
|
</n8n-tooltip>
|
||||||
|
|
|
@ -141,7 +141,7 @@ const goToSourceControlSetup = async () => {
|
||||||
{{ currentBranch }}
|
{{ currentBranch }}
|
||||||
</span>
|
</span>
|
||||||
<div :class="{ 'pt-xs': !isCollapsed }">
|
<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>
|
<template #content>
|
||||||
<div>
|
<div>
|
||||||
{{ i18n.baseText('settings.sourceControl.button.pull') }}
|
{{ i18n.baseText('settings.sourceControl.button.pull') }}
|
||||||
|
@ -163,7 +163,7 @@ const goToSourceControlSetup = async () => {
|
||||||
<n8n-tooltip
|
<n8n-tooltip
|
||||||
v-if="!sourceControlStore.preferences.branchReadOnly"
|
v-if="!sourceControlStore.preferences.branchReadOnly"
|
||||||
:disabled="!isCollapsed"
|
:disabled="!isCollapsed"
|
||||||
:open-delay="tooltipOpenDelay"
|
:show-after="tooltipOpenDelay"
|
||||||
placement="right"
|
placement="right"
|
||||||
>
|
>
|
||||||
<template #content>
|
<template #content>
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th v-for="(column, i) in tableData.columns || []" :key="column">
|
<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>
|
<template #content>
|
||||||
<div>
|
<div>
|
||||||
<img src="/static/data-mapping-gif.gif" />
|
<img src="/static/data-mapping-gif.gif" />
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
:visible="showTooltip"
|
:visible="showTooltip"
|
||||||
:disabled="nodeCreatorStore.showScrim"
|
:disabled="nodeCreatorStore.showScrim"
|
||||||
:popper-class="$style.tooltip"
|
:popper-class="$style.tooltip"
|
||||||
:open-delay="700"
|
:show-after="700"
|
||||||
>
|
>
|
||||||
<button :class="$style.button" @click="$emit('click')" data-test-id="canvas-plus-button">
|
<button :class="$style.button" @click="$emit('click')" data-test-id="canvas-plus-button">
|
||||||
<font-awesome-icon icon="plus" size="lg" />
|
<font-awesome-icon icon="plus" size="lg" />
|
||||||
|
|
Loading…
Reference in a new issue