mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix: fix tags-dropdown
This commit is contained in:
parent
e0276b12ef
commit
24a0f8bacf
|
@ -1,5 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<n8n-popover
|
<n8n-popover
|
||||||
|
:teleported="false"
|
||||||
placement="bottom"
|
placement="bottom"
|
||||||
:width="width"
|
:width="width"
|
||||||
:popper-class="$style.popover"
|
:popper-class="$style.popover"
|
||||||
|
|
|
@ -5,19 +5,19 @@
|
||||||
v-on-click-outside="onClickOutside"
|
v-on-click-outside="onClickOutside"
|
||||||
>
|
>
|
||||||
<n8n-select
|
<n8n-select
|
||||||
:popperAppendToBody="false"
|
:teleported="false"
|
||||||
:modelValue="appliedTags"
|
:modelValue="appliedTags"
|
||||||
:loading="tagsStore.isLoading"
|
:loading="tagsStore.isLoading"
|
||||||
:placeholder="placeholder"
|
:placeholder="placeholder"
|
||||||
:filter-method="filterOptions"
|
:filter-method="filterOptions"
|
||||||
@update:modelValue="onTagsUpdated"
|
|
||||||
@visible-change="onVisibleChange"
|
|
||||||
@remove-tag="onRemoveTag"
|
|
||||||
filterable
|
filterable
|
||||||
multiple
|
multiple
|
||||||
ref="select"
|
ref="select"
|
||||||
loading-text="..."
|
loading-text="..."
|
||||||
popper-class="tags-dropdown"
|
popper-class="tags-dropdown"
|
||||||
|
@update:modelValue="onTagsUpdated"
|
||||||
|
@visible-change="onVisibleChange"
|
||||||
|
@remove-tag="onRemoveTag"
|
||||||
>
|
>
|
||||||
<n8n-option
|
<n8n-option
|
||||||
v-if="options.length === 0 && filter && createEnabled"
|
v-if="options.length === 0 && filter && createEnabled"
|
||||||
|
|
Loading…
Reference in a new issue