diff --git a/web/pages/config-storage.tsx b/web/pages/config-storage.tsx index ec167cff2..6c1f5e3d0 100644 --- a/web/pages/config-storage.tsx +++ b/web/pages/config-storage.tsx @@ -55,7 +55,24 @@ function Storage({ config }) { value: config.s3.region, }, ]; - return ; + + const advanced = [ + { + name: "ACL", + value: config.s3.acl + }, + { + name: "Serving Endpoint", + value: config.s3.servingEndpoint + }, + ]; + + return ( + <> + + + + ); } export default function ServerConfig() {