Pull request: fix invalid client tags after submit

Updates #6002

Squashed commit of the following:

commit 1129596eb460c0726f53c10ce1e4758833786984
Author: Ildar Kamalov <ik@adguard.com>
Date:   Mon Jul 24 16:09:52 2023 +0300

    client: fix invalid client tags after submit
This commit is contained in:
Ildar Kamalov 2023-07-25 09:59:45 +03:00
parent ac2ecaf4f5
commit ed86af582a
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ const ClientsTable = ({
};
const handleSubmit = (values) => {
const config = values;
const config = { ...values };
if (values) {
if (values.blocked_services) {