Skip to content

Commit 6e19e5f

Browse files
author
mshaposhnikov@w3-edge.com
committed
avoid "undefined TagValue" for getContractDetails
1 parent e2f1756 commit 6e19e5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

income-fieldset-handlers/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export default {
191191
if (secIdListCount > 0) {
192192
contract.secIdList = [];
193193
for (let n = 0; n < secIdListCount; n++) {
194-
tagValue = TagValue()
194+
let tagValue = {};
195195
tagValue.tag = fields.shift();
196196
tagValue.value = fields.shift();
197197
contract.secIdList.push(tagValue);

0 commit comments

Comments
 (0)