* client: fix wrong data type for client tags

This commit is contained in:
Ildar Kamalov 2020-02-13 12:02:29 +03:00
parent 61d8ec8dae
commit df487cbc07
1 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,8 @@ class ClientsTable extends Component {
if (values.tags) {
config.tags = values.tags.map(tag => tag.value);
} else {
config.tags = [];
}
}