From df487cbc07945354242827fdefdb6b90e6c92635 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Thu, 13 Feb 2020 12:02:29 +0300 Subject: [PATCH] * client: fix wrong data type for client tags --- client/src/components/Settings/Clients/ClientsTable.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/components/Settings/Clients/ClientsTable.js b/client/src/components/Settings/Clients/ClientsTable.js index a81da13a..79b4c0ac 100644 --- a/client/src/components/Settings/Clients/ClientsTable.js +++ b/client/src/components/Settings/Clients/ClientsTable.js @@ -36,6 +36,8 @@ class ClientsTable extends Component { if (values.tags) { config.tags = values.tags.map(tag => tag.value); + } else { + config.tags = []; } }