fixed: failed[..].ui_id -> failed

This commit is contained in:
Dr.Lt.Data 2025-03-24 23:12:45 +09:00 committed by bymyself
parent 5ea7bf3683
commit 5c300f75e7
2 changed files with 2 additions and 2 deletions

View File

@ -1544,7 +1544,7 @@ export class CustomNodesManager {
if(failed.length > 0) {
for(let k in failed) {
let hash = failed[k].ui_id;
let hash = failed[k];
const item = this.grid.getRowItemBy("hash", hash);
errorMsg = `[FAIL] ${item.title}`;
}

View File

@ -494,7 +494,7 @@ export class ModelManager {
if(failed.length > 0) {
for(let k in failed) {
let hash = failed[k].ui_id;
let hash = failed[k];
const item = self.grid.getRowItemBy("hash", hash);
errorMsg = `[FAIL] ${item.title}`;
}