* [bug#59524,done,0.5h] fix not selected main module error.

This commit is contained in:
tianshujie
2025-03-03 15:49:09 +08:00
committed by 刘梦艺
parent 13a2aa46eb
commit b1fe33fb34
+1 -1
View File
@@ -5,7 +5,7 @@ window.renderRowCol = function($result, col, row)
$result.find('.picker-box').on('inited', function(e, info)
{
const $modulePicker = info[0];
$modulePicker.render({items: modules[row.branch != undefined ? row.branch : 0]});
$modulePicker.render({items: modules[row.branch == undefined || row.branch == '' ? 0 : row.branch]});
$modulePicker.$.setValue(row.module);
});
}