1
0
mirror of synced 2025-02-16 20:53:13 +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 <div
v-for="(error, index) in context.violations" v-for="(error, index) in context.allErrors"
:key="index" :key="index"
class="text-danger" class="text-danger"
> >
{{ error.message }} {{ error }}
</div> </div>
</FormularioInput> </FormularioInput>
@ -42,11 +42,11 @@
> >
<div <div
v-for="(error, index) in context.violations" v-for="(error, index) in context.allErrors"
:key="index" :key="index"
class="text-danger" class="text-danger"
> >
{{ error.message }} {{ error }}
</div> </div>
</FormularioInput> </FormularioInput>
</FormularioGrouping> </FormularioGrouping>

View File

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