From ed86af582ad6939b03e0bc34056ea3e3938ec64e Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Tue, 25 Jul 2023 09:59:45 +0300 Subject: [PATCH] Pull request: fix invalid client tags after submit Updates #6002 Squashed commit of the following: commit 1129596eb460c0726f53c10ce1e4758833786984 Author: Ildar Kamalov Date: Mon Jul 24 16:09:52 2023 +0300 client: fix invalid client tags after submit --- .../components/Settings/Clients/ClientsTable/ClientsTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Settings/Clients/ClientsTable/ClientsTable.js b/client/src/components/Settings/Clients/ClientsTable/ClientsTable.js index 41ed4e3b..dab8994c 100644 --- a/client/src/components/Settings/Clients/ClientsTable/ClientsTable.js +++ b/client/src/components/Settings/Clients/ClientsTable/ClientsTable.js @@ -57,7 +57,7 @@ const ClientsTable = ({ }; const handleSubmit = (values) => { - const config = values; + const config = { ...values }; if (values) { if (values.blocked_services) {