mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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"
|
:stickyOffset="4"
|
||||||
@drop="onDrop"
|
@drop="onDrop"
|
||||||
>
|
>
|
||||||
|
<!-- eslint-disable-next-line vue/v-slot-style -->
|
||||||
<template v-slot="{ droppable, activeDrop }">
|
<template v-slot="{ droppable, activeDrop }">
|
||||||
<div
|
<div
|
||||||
:class="{
|
:class="{
|
||||||
|
@ -103,10 +104,8 @@
|
||||||
@focus="onInputFocus"
|
@focus="onInputFocus"
|
||||||
@blur="onInputBlur"
|
@blur="onInputBlur"
|
||||||
>
|
>
|
||||||
<div
|
<!-- eslint-disable-next-line vue/no-deprecated-slot-attribute -->
|
||||||
v-if="isListMode"
|
<div v-if="isListMode" slot="suffix">
|
||||||
slot="suffix"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
:class="{
|
:class="{
|
||||||
['el-input__icon']: true,
|
['el-input__icon']: true,
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div :class="$style.searchInput" v-if="filterable && !errorView" @keydown="onKeyDown">
|
<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')">
|
<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" />
|
<font-awesome-icon :class="$style.searchIcon" icon="search" slot="prefix" />
|
||||||
</n8n-input>
|
</n8n-input>
|
||||||
</div>
|
</div>
|
||||||
|
@ -48,6 +49,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- eslint-disable-next-line vue/no-deprecated-slot-attribute -->
|
||||||
<slot slot="reference" />
|
<slot slot="reference" />
|
||||||
</n8n-popover>
|
</n8n-popover>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue