Update helper text for PF app - S3->region field (#660)
This commit is contained in:
parent
82dfc3fa6f
commit
3462cc343e
2 changed files with 13 additions and 1 deletions
5
.changeset/eighty-boxes-exist.md
Normal file
5
.changeset/eighty-boxes-exist.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"saleor-app-products-feed": minor
|
||||
---
|
||||
|
||||
Improved helper text in S3 form - region field. Now it should be more explicit that only region code (like "eu-west-1") should be provided.
|
|
@ -44,7 +44,14 @@ export const S3ConfigurationForm = (props: Props) => {
|
|||
|
||||
<Input size={"small"} name={"bucketName"} control={control} label="Bucket name" />
|
||||
|
||||
<Input size={"small"} name={"region"} control={control} label="Bucket region" />
|
||||
<Input
|
||||
size={"small"}
|
||||
name={"region"}
|
||||
control={control}
|
||||
label="Bucket region"
|
||||
helperText={"Use the region code, e.g. 'eu-west-1'"}
|
||||
placeholder={"eu-west-1"}
|
||||
/>
|
||||
|
||||
<Button type="submit" variant="primary" alignSelf={"end"}>
|
||||
Save bucket configuration
|
||||
|
|
Loading…
Reference in a new issue