We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da23ad0 commit 9aaf879Copy full SHA for 9aaf879
site/src/pages/GroupsPage/SettingsGroupPageView.tsx
@@ -27,7 +27,7 @@ type FormData = {
27
28
const validationSchema = Yup.object({
29
name: nameValidator("Name"),
30
- quota_allowance: Yup.number().required().positive().integer(),
+ quota_allowance: Yup.number().required().min(0).integer(),
31
})
32
33
const UpdateGroupForm: React.FC<{
0 commit comments