fix: Add temporary slot syntax lint exceptions (no-changelog) (#4652)

👕 Add temporary slot lint exceptions
This commit is contained in:
Iván Ovejero 2022-11-18 18:03:51 +01:00 committed by GitHub
parent 44182f23a5
commit c2da21621f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

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

View file

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