Skip to content

Commit dbf1550

Browse files
authored
Merge pull request #283 from dnum-mi/fix/input-hint
fix: 🐛 Corrige la gestion d'undefined pour l'indice du champ de s…
2 parents a5432c5 + d289e8d commit dbf1550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DsfrInput/DsfrInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export default defineComponent({
5858
>
5959
{{ label }} {{ $attrs.required ? '*' : '' }}
6060
<span
61-
v-if="hint.length"
61+
v-if="hint"
6262
class="fr-hint-text"
6363
>{{ hint }}</span>
6464
</label>

0 commit comments

Comments
 (0)