Add advanced options to s3 table so all the data is available for the new form
This commit is contained in:
parent
8ddd780281
commit
e8ca1d9eea
@ -55,7 +55,24 @@ function Storage({ config }) {
|
||||
value: config.s3.region,
|
||||
},
|
||||
];
|
||||
return <KeyValueTable title="External Storage" data={data} />;
|
||||
|
||||
const advanced = [
|
||||
{
|
||||
name: "ACL",
|
||||
value: config.s3.acl
|
||||
},
|
||||
{
|
||||
name: "Serving Endpoint",
|
||||
value: config.s3.servingEndpoint
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<>
|
||||
<KeyValueTable title="External Storage" data={data} />
|
||||
<KeyValueTable title="Advanced options" data={advanced} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default function ServerConfig() {
|
||||
|
Loading…
Reference in New Issue
Block a user