diff --git a/src/AutoConnectElement.h b/src/AutoConnectElement.h index b1e4cb7..2fa9883 100644 --- a/src/AutoConnectElement.h +++ b/src/AutoConnectElement.h @@ -11,11 +11,9 @@ #define _AUTOCONENCTELEMENT_H_ #include "AutoConnectElementBasis.h" -//#include "AutoConnectElementBasisImpl.h" #ifdef AUTOCONNECT_USE_JSON #include #include "AutoConnectElementJson.h" -//#include "AutoConnectElementJsonImpl.h" using AutoConnectElement = AutoConnectElementJson; using AutoConnectButton = AutoConnectButtonJson; using AutoConnectCheckbox = AutoConnectCheckboxJson; diff --git a/src/AutoConnectElementJsonImpl.h b/src/AutoConnectElementJsonImpl.h index 33a99ba..4c15dd6 100644 --- a/src/AutoConnectElementJsonImpl.h +++ b/src/AutoConnectElementJsonImpl.h @@ -121,8 +121,8 @@ bool AutoConnectSelectJson::loadElement(const JsonObject& json) { String type = json.get(F(AUTOCONNECT_JSON_KEY_TYPE)); if (type.equalsIgnoreCase(F(AUTOCONNECT_JSON_TYPE_ACSELECT))) { _setElement(json); - empty(); label = json.get(F(AUTOCONNECT_JSON_KEY_LABEL)); + empty(); JsonArray& optionArray = json[AUTOCONNECT_JSON_KEY_OPTION]; for (auto value : optionArray) add(value.as());