fix: null message on input help (#343)
* fix: null message on input help * fix null message
This commit is contained in:
parent
aea4c7e063
commit
299e1e677a
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="flex mb-1 input-help">
|
<div class="flex mb-1 input-help">
|
||||||
<small :class="theme.default.help" class="grow flex">
|
<small :class="theme.default.help" class="grow flex">
|
||||||
<slot name="help"><span class="field-help" v-html="help" /></slot>
|
<slot name="help"><span v-if="help" class="field-help" v-html="help" /></slot>
|
||||||
</small>
|
</small>
|
||||||
<slot name="after-help">
|
<slot name="after-help">
|
||||||
<small class="flex-grow" />
|
<small class="flex-grow" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue