Skip to content

Commit 1dc9616

Browse files
committed
new bio minimum 51 characters
1 parent 16c79f2 commit 1dc9616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/app/settings/AccountInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<input type="text" placeholder="Username" v-model="currentValue" class="matcha-input md:max-w-sm">
3131
<span class="matcha-input-error">{{ errors[0] }}</span>
3232
</ValidationProvider>
33-
<ValidationProvider v-if="type === 'bio'" name="Biography" rules="required|min:50|max:200" v-slot="{errors}">
33+
<ValidationProvider v-if="type === 'bio'" name="Biography" rules="required|min:51|max:200" v-slot="{errors}">
3434
<textarea style="resize: none;" rows="4" type="text" placeholder="Biography" v-model="currentValue" class="matcha-input md:max-w-sm block"></textarea>
3535
<span class="matcha-input-error">{{ errors[0] }}</span>
3636
</ValidationProvider>

0 commit comments

Comments
 (0)