This commit is contained in:
2022-03-06 20:32:31 +00:00
parent e617fbf19c
commit 24cb3e990e
2 changed files with 33 additions and 34 deletions

View File

@@ -837,5 +837,5 @@ Current v8 docs home: https://www.ayanova.com/docs/
BUILD 8.0.0-beta.1-rc4 CHANGES OF NOTE
- subscriptions lists fixed bug where no type selected would display "[undefined]" in data list, now displays nothing
- fixed tag control title which was too high
- fixed tag control title which was too high and smaller chips so that tag controls are same height as other controls and can show more in a smaller space.
- added missing "duration" field description to notify-subscription docs

View File

@@ -1,37 +1,36 @@
<template>
<div>
<v-autocomplete
:value="value"
:readonly="readonly"
:items="sourcetags"
:loading="tagSearchUnderway"
:placeholder="placeHolderText"
:persistent-placeholder="persistentPlaceHolder"
:hint="hint"
:label="noLabel ? '' : title"
:prepend-inner-icon="prependInnerIcon"
:no-data-text="$ay.t('NoData')"
:search-input.sync="tagSearchEntry"
:clearable="clearable"
hide-selected
multiple
chips
deletable-chips
cache-items
:rules="rules"
:error-messages="errorMessages"
@input="input($event)"
>
<template v-if="offerAdd()" slot="no-data">
<v-chip color="primary" text-color="white" class="text-h4">
{{ normalizeTag(tagSearchEntry) }}</v-chip
>
<v-btn large icon @click="addTag()">
<v-icon large color="success">$ayiPlusCircle</v-icon>
</v-btn>
</template>
</v-autocomplete>
</div>
<v-autocomplete
:value="value"
:readonly="readonly"
:items="sourcetags"
:loading="tagSearchUnderway"
:placeholder="placeHolderText"
:persistent-placeholder="persistentPlaceHolder"
:hint="hint"
:label="noLabel ? '' : title"
:prepend-inner-icon="prependInnerIcon"
:no-data-text="$ay.t('NoData')"
:search-input.sync="tagSearchEntry"
:clearable="clearable"
hide-selected
multiple
chips
small-chips
deletable-chips
cache-items
:rules="rules"
:error-messages="errorMessages"
@input="input($event)"
>
<template v-if="offerAdd()" slot="no-data">
<v-chip color="primary" text-color="white" class="text-h4">
{{ normalizeTag(tagSearchEntry) }}</v-chip
>
<v-btn large icon @click="addTag()">
<v-icon large color="success">$ayiPlusCircle</v-icon>
</v-btn>
</template>
</v-autocomplete>
</template>
<script>
export default {