Browse Source

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

pull/1886/head
Gabe Kangas 5 years ago
parent
commit
e8ca1d9eea
  1. 19
      web/pages/config-storage.tsx

19
web/pages/config-storage.tsx

@ -55,7 +55,24 @@ function Storage({ config }) { @@ -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…
Cancel
Save