1
0
mirror of synced 2024-11-22 05:16:05 +03:00

chore: Returned back allErrors in storybook

This commit is contained in:
Zaytsev Kirill 2020-10-26 17:00:18 +03:00
parent 07f3168e1e
commit 1caff9c089
2 changed files with 7 additions and 7 deletions

View File

@ -17,11 +17,11 @@
>
<div
v-for="(error, index) in context.violations"
v-for="(error, index) in context.allErrors"
:key="index"
class="text-danger"
>
{{ error.message }}
{{ error }}
</div>
</FormularioInput>
@ -42,11 +42,11 @@
>
<div
v-for="(error, index) in context.violations"
v-for="(error, index) in context.allErrors"
:key="index"
class="text-danger"
>
{{ error.message }}
{{ error }}
</div>
</FormularioInput>
</FormularioGrouping>

View File

@ -20,7 +20,7 @@
>
<div
v-for="(error, index) in context.violations"
v-for="(error, index) in context.allErrors"
:key="index"
class="text-danger"
>
@ -45,11 +45,11 @@
>
<div
v-for="(error, index) in context.violations"
v-for="(error, index) in context.allErrors"
:key="index"
class="text-danger"
>
{{ error.message }}
{{ error }}
</div>
</FormularioInput>