mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
fix: Add temporary slot syntax lint exceptions (no-changelog) (#4652)
👕 Add temporary slot lint exceptions
This commit is contained in:
parent
44182f23a5
commit
c2da21621f
|
@ -69,6 +69,7 @@
|
|||
:stickyOffset="4"
|
||||
@drop="onDrop"
|
||||
>
|
||||
<!-- eslint-disable-next-line vue/v-slot-style -->
|
||||
<template v-slot="{ droppable, activeDrop }">
|
||||
<div
|
||||
:class="{
|
||||
|
@ -103,10 +104,8 @@
|
|||
@focus="onInputFocus"
|
||||
@blur="onInputBlur"
|
||||
>
|
||||
<div
|
||||
v-if="isListMode"
|
||||
slot="suffix"
|
||||
>
|
||||
<!-- eslint-disable-next-line vue/no-deprecated-slot-attribute -->
|
||||
<div v-if="isListMode" slot="suffix">
|
||||
<i
|
||||
:class="{
|
||||
['el-input__icon']: true,
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
</div>
|
||||
<div :class="$style.searchInput" v-if="filterable && !errorView" @keydown="onKeyDown">
|
||||
<n8n-input size="medium" :value="filter" :clearable="true" @input="onFilterInput" @blur="onSearchBlur" ref="search" :placeholder="$locale.baseText('resourceLocator.search.placeholder')">
|
||||
<!-- eslint-disable-next-line vue/no-deprecated-slot-attribute -->
|
||||
<font-awesome-icon :class="$style.searchIcon" icon="search" slot="prefix" />
|
||||
</n8n-input>
|
||||
</div>
|
||||
|
@ -48,6 +49,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- eslint-disable-next-line vue/no-deprecated-slot-attribute -->
|
||||
<slot slot="reference" />
|
||||
</n8n-popover>
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue