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 b697e26 commit d07fbb4Copy full SHA for d07fbb4
resources/js/oauth2/profile/edit_client/components/oauth_panel.js
@@ -88,9 +88,9 @@ const OauthPanel = ({
88
"The app description field is required."
89
),
90
website: string().max(SIMPLE_INPUT_MAX_LENGTH, ''),
91
- logo_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, ''),
92
- tos_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, ''),
93
- policy_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, ''),
+ logo_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, '').nullable(),
+ tos_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, '').nullable(),
+ policy_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, '').nullable(),
94
});
95
}
96
0 commit comments