Add more infos

This commit is contained in:
Adria Navarro 2025-03-13 15:58:38 +01:00
parent 7745445c78
commit 932f2af48b
1 changed files with 12 additions and 4 deletions

View File

@ -7,6 +7,7 @@
Divider, Divider,
Heading, Heading,
Input, Input,
Link,
Modal, Modal,
ModalContent, ModalContent,
} from "@budibase/bbui" } from "@budibase/bbui"
@ -40,10 +41,10 @@
bind:value={config.url} bind:value={config.url}
/> />
<div class="field-info"> <div class="field-info">
<Body size="XS" color="var(--spectrum-global-color-gray-700)" <Body size="XS" color="var(--spectrum-global-color-gray-700)">
>The location where the flow sends the credentials. This field should be The location where the flow sends the credentials. This field should be
a full URL.</Body a full URL.
> </Body>
</div> </div>
<Input <Input
label="Client ID*" label="Client ID*"
@ -55,6 +56,13 @@
placeholder="Type here..." placeholder="Type here..."
bind:value={config.clientSecret} bind:value={config.clientSecret}
/> />
<Body size="S"
>To learn how to configure OAuth2, our documentation <Link
href="TODO"
target="_blank"
size="M">our documentation.</Link
></Body
>
</ModalContent> </ModalContent>
</Modal> </Modal>