Skip to content

Commit e735abd

Browse files
committed
Run lint:fix
1 parent 9d55ab6 commit e735abd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/instant-meilisearch/src/adapter/search-request-adapter/filter-adapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function transformFacetFilter(filter: string): string {
3838
*
3939
* 'price = 5.99' becomes '"price"=5.99'
4040
*
41-
* Wrap the attribute between quotes. Escape backslash (\\) and quote (")
41+
* Wrap the attribute between quotes. Escape backslash (\) and quote (")
4242
* characters.
4343
*
4444
* @param {string} filter

playgrounds/vue3/src/App.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<div class="search-panel__results">
2727
<ais-search-box placeholder="Search here…" />
2828
<ais-hits>
29-
<template v-slot:item="{ item }">
29+
<template #item="{ item }">
3030
<div>
3131
<div class="hit-name">
3232
<ais-highlight :hit="item" attribute="name" />
@@ -41,8 +41,8 @@
4141
</template>
4242
</ais-hits>
4343
<ais-configure
44-
:attributesToSnippet="['description:50']"
45-
snippetEllipsisText=""
44+
:attributes-to-snippet="['description:50']"
45+
snippet-ellipsis-text=""
4646
/>
4747
</div>
4848
<ais-pagination />

0 commit comments

Comments
 (0)