Skip to content

Commit

Permalink
fix: don't require two characters in profile update form (#1117)
Browse files Browse the repository at this point in the history
update from requires 2 characters but register from requires at least
1 (vee-validate require rule)

M2-706
  • Loading branch information
sethidden authored and Frodigo committed Jul 4, 2022
1 parent f29dcf5 commit 21cb834
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="form__horizontal">
<ValidationProvider
v-slot="{ errors }"
rules="required|min:2"
rules="required"
class="form__element"
>
<SfInput
Expand All @@ -21,7 +21,7 @@
</ValidationProvider>
<ValidationProvider
v-slot="{ errors }"
rules="required|min:2"
rules="required"
class="form__element"
>
<SfInput
Expand Down

0 comments on commit 21cb834

Please sign in to comment.