* [bug#57292,done,0.2h] fix bug.

This commit is contained in:
sunguangming
2025-05-19 09:26:26 +08:00
committed by 刘刚
parent e2ab901841
commit 18c7047d42
+1 -1
View File
@@ -166,7 +166,7 @@ function updateAssignedTo()
if(multiple && mode == 'linear' && $('#modalTeam tr.member-doing').length == 0 && $('#modalTeam tr.member-wait').length >= 1)
{
index --;
assignedTo = assignedToItems[index].value;
assignedTo = assignedToItems.includes(index) ? assignedToItems[index].value : '';
}
$assignedToPicker.render({items: assignedToItems, disabled: true});