Add advanced options to s3 table so all the data is available for the new form

This commit is contained in:
Gabe Kangas 2021-01-26 21:13:07 -08:00
parent 8ddd780281
commit e8ca1d9eea

View File

@ -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() {