Clear fields on selection of new process

This commit is contained in:
2018-10-19 20:51:52 -05:00
parent 95e5bb7baf
commit 28a0c4a81b
2 changed files with 7 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
Field::Field(QJsonObject field) {
this->name = field["name"].toString();
this->type = field["field_type"].toString();
this->type = field["type"].toString();
this->value = field["value"].toString();
auto fields = field["fields"].toArray();
for (auto field : fields) {