Fixed title by removing my custom unnecessary one in favor of regular label of control, no idea why it was done that way

This commit is contained in:
2022-03-05 01:21:41 +00:00
parent f00cb7c413
commit 788c68cdf3
2 changed files with 5 additions and 3 deletions

View File

@@ -838,3 +838,4 @@ Current v8 docs home: https://www.ayanova.com/docs/
BUILD 8.0.0-beta.1-rc4 CHANGES OF NOTE 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 - 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

View File

@@ -1,8 +1,8 @@
<template> <template>
<div> <div>
<span v-if="!noLabel" class="text-caption"> <!-- <span v-if="!noLabel" class="text-caption">
{{ title }} {{ title }}
</span> </span> -->
<v-autocomplete <v-autocomplete
:value="value" :value="value"
:readonly="readonly" :readonly="readonly"
@@ -11,6 +11,7 @@
:placeholder="placeHolderText" :placeholder="placeHolderText"
:persistent-placeholder="persistentPlaceHolder" :persistent-placeholder="persistentPlaceHolder"
:hint="hint" :hint="hint"
:label="noLabel ? '' : title"
:prepend-inner-icon="prependInnerIcon" :prepend-inner-icon="prependInnerIcon"
:no-data-text="$ay.t('NoData')" :no-data-text="$ay.t('NoData')"
:search-input.sync="tagSearchEntry" :search-input.sync="tagSearchEntry"