From 3d6b343adccbca76bc497868c6e5c019e31e2ee9 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sat, 19 Mar 2022 23:47:05 +0100 Subject: [PATCH] remove mysql --- src/routes/applications/[id]/index.svelte | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/routes/applications/[id]/index.svelte b/src/routes/applications/[id]/index.svelte index 4fb4a97db..221aefddc 100644 --- a/src/routes/applications/[id]/index.svelte +++ b/src/routes/applications/[id]/index.svelte @@ -100,7 +100,6 @@ 'mosquitto', 'msgpack', 'mssql', - 'mysql', 'mysqli', 'oauth', 'oci8', @@ -229,7 +228,7 @@ const tempPhpModules = application.phpModules?.map((module) => module.value).toString() || ''; await post(`/applications/${id}/check.json`, { fqdn: application.fqdn, forceSave }); await post(`/applications/${id}.json`, { ...application, phpModules: tempPhpModules }); - // return window.location.reload(); + return window.location.reload(); } catch ({ error }) { if (error.startsWith('DNS not set')) { forceSave = true;