Changes to client credentials form (#4836)

This commit is contained in:
Nidhi 2021-06-01 17:41:48 +05:30 committed by GitHub
parent 51addbc963
commit 26ce58e9e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -618,7 +618,12 @@ class DatasourceRestAPIEditor extends React.Component<Props> {
};
renderOauth2ClientCredentials = () => {
return this.renderOauth2Common();
return (
<>
{this.renderOauth2Common()}
{this.renderOauth2CommonAdvanced()}
</>
);
};
renderOauth2AuthorizationCode = () => {