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

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