Skip to content

Commit e37c508

Browse files
linting
1 parent 5cf06f0 commit e37c508

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/PlaceSearch.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<template>
22
<v-autocomplete
3+
ref="autocompleteRef"
34
v-model="model"
45
v-model:search="search"
5-
ref="autocompleteRef"
66
auto-select-first
77
class="rounded"
8-
min-width="280px"
98
clearable
109
:custom-filter="filter"
1110
density="compact"
@@ -15,21 +14,22 @@
1514
:items="items"
1615
label="Ort, Adresse, Flurname,..."
1716
:loading="!!abortController"
17+
min-width="280px"
1818
:prepend-inner-icon="mdiMagnify"
1919
return-object
2020
single-line
2121
variant="outlined"
22-
@focus="handleInfoVisibility(true)"
2322
@click:clear="clear"
23+
@focus="handleInfoVisibility(true)"
2424
>
2525
<template #item="{ props, item }">
2626
<v-list-item
2727
v-bind="props"
28-
:key="item.raw.id"
2928
:id="item.raw.id"
30-
:value="item.raw.id"
29+
:key="item.raw.id"
3130
:subtitle="item.raw.type"
3231
:title="item.raw.properties.name"
32+
:value="item.raw.id"
3333
></v-list-item>
3434
</template>
3535
</v-autocomplete>

0 commit comments

Comments
 (0)