Skip to content

Commit 299e1e6

Browse files
authored
fix: null message on input help (#343)
* fix: null message on input help * fix null message
1 parent aea4c7e commit 299e1e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/components/forms/components/InputHelp.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="flex mb-1 input-help">
33
<small :class="theme.default.help" class="grow flex">
4-
<slot name="help"><span class="field-help" v-html="help" /></slot>
4+
<slot name="help"><span v-if="help" class="field-help" v-html="help" /></slot>
55
</small>
66
<slot name="after-help">
77
<small class="flex-grow" />

0 commit comments

Comments
 (0)