|
@@ -413,7 +413,8 @@ export default {
|
|
value: "mname",
|
|
value: "mname",
|
|
label: "mname",
|
|
label: "mname",
|
|
};
|
|
};
|
|
- let client = clentli.find(r => r.mdefault).mcode.toString();
|
|
|
|
|
|
+ const clentliList = clentli.find(r => r.mdefault) || false;
|
|
|
|
+ let client = clentliList ? clentliList.mcode.toString() : -1;
|
|
this.cycle = this.verifyList(appli, source, keys, false);
|
|
this.cycle = this.verifyList(appli, source, keys, false);
|
|
this.version = this.verifyList(appVLi, appV, keys, true);
|
|
this.version = this.verifyList(appVLi, appV, keys, true);
|
|
this.content = this.verifyList(contentli, contentV, keys, true);
|
|
this.content = this.verifyList(contentli, contentV, keys, true);
|