Undo unwanted changes
This commit is contained in:
parent
f455fb1bee
commit
1f0bf51d9f
|
@ -86,15 +86,22 @@
|
||||||
<Modal bind:this={modal}>
|
<Modal bind:this={modal}>
|
||||||
<ModalContent onConfirm={saveOAuth2Config} size="M">
|
<ModalContent onConfirm={saveOAuth2Config} size="M">
|
||||||
<Heading size="S">Create new OAuth2 connection</Heading>
|
<Heading size="S">Create new OAuth2 connection</Heading>
|
||||||
|
|
||||||
<Body size="S">
|
<Body size="S">
|
||||||
The OAuth 2 authentication below uses the Client Credentials (machine to
|
The OAuth 2 authentication below uses the Client Credentials (machine to
|
||||||
machine) grant type.
|
machine) grant type.
|
||||||
</Body>
|
</Body>
|
||||||
<Divider noGrid noMargin />
|
<Divider noGrid noMargin />
|
||||||
<Input error={errors.name} />
|
<Input
|
||||||
|
label="Name*"
|
||||||
|
placeholder="Type here..."
|
||||||
|
bind:value={config.name}
|
||||||
|
error={errors.name}
|
||||||
|
/>
|
||||||
<Input
|
<Input
|
||||||
label="Service URL*"
|
label="Service URL*"
|
||||||
placeholder="E.g. www.google.com"
|
placeholder="E.g. www.google.com"
|
||||||
|
bind:value={config.url}
|
||||||
error={errors.url}
|
error={errors.url}
|
||||||
/>
|
/>
|
||||||
<div class="field-info">
|
<div class="field-info">
|
||||||
|
|
Loading…
Reference in New Issue