This commit is contained in:
@@ -21,8 +21,6 @@
|
|||||||
:no-filter="isTagFilter"
|
:no-filter="isTagFilter"
|
||||||
:append-icon="errorIcon"
|
:append-icon="errorIcon"
|
||||||
@click:append="handleErrorClick"
|
@click:append="handleErrorClick"
|
||||||
:prepend-icon="editIcon()"
|
|
||||||
@click:prepend="handleEditClick"
|
|
||||||
@mousedown="dropdown"
|
@mousedown="dropdown"
|
||||||
>
|
>
|
||||||
<template v-slot:prepend-item v-if="hasError()">
|
<template v-slot:prepend-item v-if="hasError()">
|
||||||
@@ -30,6 +28,10 @@
|
|||||||
<span class="error--text"> {{ errors[0] }}</span>
|
<span class="error--text"> {{ errors[0] }}</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<template v-slot:prepend>
|
||||||
|
<v-icon @click="handleEditClick">{{ editIcon() }}</v-icon>
|
||||||
|
</template>
|
||||||
</v-autocomplete>
|
</v-autocomplete>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -125,6 +127,7 @@ export default {
|
|||||||
data: "ay-start-form-select-list"
|
data: "ay-start-form-select-list"
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
editIcon: function() {
|
editIcon: function() {
|
||||||
if (!this.showEditIcon) {
|
if (!this.showEditIcon) {
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user