educoreapp2 1.0.89 → 1.0.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -192,6 +192,7 @@ class BaseInputString extends _react.Component {
|
|
192
192
|
}
|
193
193
|
renderSelect() {
|
194
194
|
let className3 = "form-select " + this.states.className2 + "";
|
195
|
+
console.log("listttt", this.list);
|
195
196
|
return /*#__PURE__*/_react.default.createElement("select", {
|
196
197
|
name: this.states.name,
|
197
198
|
id: this.states.id,
|
@@ -200,7 +201,7 @@ class BaseInputString extends _react.Component {
|
|
200
201
|
"aria-label": "size 3 select example"
|
201
202
|
}, Object.keys(this.list).map(function (key) {
|
202
203
|
let el = this.list[key];
|
203
|
-
let vname = el.
|
204
|
+
let vname = el.name;
|
204
205
|
let id = el.id;
|
205
206
|
return /*#__PURE__*/_react.default.createElement("option", {
|
206
207
|
key: id,
|