fix: fix tags-dropdown

This commit is contained in:
Alex Grozav 2023-07-04 09:47:26 +03:00
parent e0276b12ef
commit 24a0f8bacf
2 changed files with 5 additions and 4 deletions

View file

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

View file

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