From 32e8406c376e0218d019268500cbdb2ed98a3d5f Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Sat, 18 Sep 2021 12:24:13 -0600 Subject: [PATCH] ui(admin): fix node behind proxy and automatic allocation settings --- .../components/admin/nodes/NodeEditContainer.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/resources/scripts/components/admin/nodes/NodeEditContainer.tsx b/resources/scripts/components/admin/nodes/NodeEditContainer.tsx index f37ba26e..e8fb0ad8 100644 --- a/resources/scripts/components/admin/nodes/NodeEditContainer.tsx +++ b/resources/scripts/components/admin/nodes/NodeEditContainer.tsx @@ -19,8 +19,8 @@ interface Values { databaseHostId: number | null; fqdn: string; scheme: string; - behindProxy: boolean; - public: boolean; + behindProxy: string; // Yes, this is technically a boolean. + public: string; // Yes, this is technically a boolean. daemonBase: string; // This value cannot be updated once a node has been created. memory: number; @@ -51,8 +51,10 @@ export default () => { const submit = (values: Values, { setSubmitting }: FormikHelpers) => { clearFlashes('node'); - updateNode(node.id, values) - .then(() => setNode({ ...node, ...values })) + const v = { ...values, behindProxy: values.behindProxy === 'true', public: values.public === 'true' }; + + updateNode(node.id, v) + .then(() => setNode({ ...node, ...v })) .catch(error => { console.error(error); clearAndAddHttpError({ key: 'node', error }); @@ -69,8 +71,8 @@ export default () => { databaseHostId: node.databaseHostId, fqdn: node.fqdn, scheme: node.scheme, - behindProxy: node.behindProxy, - public: node.public, + behindProxy: node.behindProxy ? 'true' : 'false', + public: node.public ? 'true' : 'false', daemonBase: node.daemonBase, listenPortHTTP: node.listenPortHTTP,