Skip to content

Commit

Permalink
admin(js(yup)): allow username to be null, fixes #8511
Browse files Browse the repository at this point in the history
  • Loading branch information
satkunas committed Jan 22, 2025
1 parent 100239d commit d36f1be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const schema = (props) => {
ssl_mobileconfig_path: yup.string().label(i18n.t('URL')),
ssl_path: yup.string().label(i18n.t('URL')),
url: yup.string().nullable().label(i18n.t('URL')),
username: yup.string().label(i18n.t('Username'))
username: yup.string().nullable().label(i18n.t('Username'))
})
}

Expand Down

0 comments on commit d36f1be

Please sign in to comment.