From 268af5c20e2c23e3570103755c1f0dfe2f2bbcf0 Mon Sep 17 00:00:00 2001 From: Meisam <39205857+MFTabriz@users.noreply.github.com> Date: Tue, 29 Nov 2022 20:12:06 +0100 Subject: [PATCH] activate save on s3 bucket change in admin (#2392) --- web/components/config/EditStorage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/components/config/EditStorage.tsx b/web/components/config/EditStorage.tsx index 3eae1db6d..9e1eb9c3f 100644 --- a/web/components/config/EditStorage.tsx +++ b/web/components/config/EditStorage.tsx @@ -47,6 +47,7 @@ function checkSaveable(formValues: any, currentValues: any) { endpoint !== currentValues.endpoint || accessKey !== currentValues.accessKey || secret !== currentValues.secret || + bucket !== currentValues.bucket || region !== currentValues.region || (!currentValues.servingEndpoint && servingEndpoint !== '') || (!!currentValues.servingEndpoint && servingEndpoint !== currentValues.servingEndpoint) ||