Fixes lack of value check in text type metadata.
This commit is contained in:
parent
37ddc8f13e
commit
e5cf40325d
|
@ -16,7 +16,7 @@
|
|||
@input="($event) => getMask ? null : onInput($event.target.value)"
|
||||
@blur="onBlur">
|
||||
<small
|
||||
v-if="getMaxlength"
|
||||
v-if="value && getMaxlength"
|
||||
class="help counter"
|
||||
:class="{ 'is-invisible': !isInputFocused }">
|
||||
{{ value.length }} / {{ getMaxlength }}
|
||||
|
|
Loading…
Reference in New Issue