From d340b4b726cf615ff45941e7752f55733698d8c0 Mon Sep 17 00:00:00 2001 From: wangyuting Date: Thu, 13 Jun 2024 18:07:34 +0800 Subject: [PATCH] * [bug#49921,done,1h,0h] Fix ipd project stage is not int stageList error. --- module/execution/js/batchedit.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/js/batchedit.ui.js b/module/execution/js/batchedit.ui.js index 27e0eca8ca..7e5513263f 100644 --- a/module/execution/js/batchedit.ui.js +++ b/module/execution/js/batchedit.ui.js @@ -1,6 +1,6 @@ window.renderRowData = function($row, index, row) { - if(row.type == 'stage' || row.attribute != '') + if((row.type == 'stage' || row.attribute != '') && stageList[row.attribute]) { const parentType = row.grade > 1 && parents[row.parent] ? parents[row.parent].attribute : ''; /* If is stage, modify lifetime to attribute. */