From e8ca1d9eea2bf1493869412416966f04ecfdc8bb Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 26 Jan 2021 21:13:07 -0800 Subject: [PATCH] Add advanced options to s3 table so all the data is available for the new form --- web/pages/config-storage.tsx | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) 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() {