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>
|
||||
<n8n-popover
|
||||
:teleported="false"
|
||||
placement="bottom"
|
||||
:width="width"
|
||||
:popper-class="$style.popover"
|
||||
|
|
|
@ -5,19 +5,19 @@
|
|||
v-on-click-outside="onClickOutside"
|
||||
>
|
||||
<n8n-select
|
||||
:popperAppendToBody="false"
|
||||
:teleported="false"
|
||||
:modelValue="appliedTags"
|
||||
:loading="tagsStore.isLoading"
|
||||
:placeholder="placeholder"
|
||||
:filter-method="filterOptions"
|
||||
@update:modelValue="onTagsUpdated"
|
||||
@visible-change="onVisibleChange"
|
||||
@remove-tag="onRemoveTag"
|
||||
filterable
|
||||
multiple
|
||||
ref="select"
|
||||
loading-text="..."
|
||||
popper-class="tags-dropdown"
|
||||
@update:modelValue="onTagsUpdated"
|
||||
@visible-change="onVisibleChange"
|
||||
@remove-tag="onRemoveTag"
|
||||
>
|
||||
<n8n-option
|
||||
v-if="options.length === 0 && filter && createEnabled"
|
||||
|
|
Loading…
Reference in a new issue