fixed: failed[..].ui_id -> failed
This commit is contained in:
@@ -1544,7 +1544,7 @@ export class CustomNodesManager {
|
|||||||
|
|
||||||
if(failed.length > 0) {
|
if(failed.length > 0) {
|
||||||
for(let k in failed) {
|
for(let k in failed) {
|
||||||
let hash = failed[k].ui_id;
|
let hash = failed[k];
|
||||||
const item = this.grid.getRowItemBy("hash", hash);
|
const item = this.grid.getRowItemBy("hash", hash);
|
||||||
errorMsg = `[FAIL] ${item.title}`;
|
errorMsg = `[FAIL] ${item.title}`;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -494,7 +494,7 @@ export class ModelManager {
|
|||||||
|
|
||||||
if(failed.length > 0) {
|
if(failed.length > 0) {
|
||||||
for(let k in failed) {
|
for(let k in failed) {
|
||||||
let hash = failed[k].ui_id;
|
let hash = failed[k];
|
||||||
const item = self.grid.getRowItemBy("hash", hash);
|
const item = self.grid.getRowItemBy("hash", hash);
|
||||||
errorMsg = `[FAIL] ${item.title}`;
|
errorMsg = `[FAIL] ${item.title}`;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user