fix host center current target selection

This commit is contained in:
zhx 2026-07-03 14:36:44 +08:00
parent 566ebd1a6b
commit 3f7d14e528

View File

@ -705,7 +705,7 @@
function pickFirstMemberWorkTarget(body) {
const targets = Array.isArray(body?.targets) ? body.targets : [];
return targets.find((item) => item?.target) || targets[0] || body?.target || null;
return targets[0] || body?.target || null;
}
function pickGiftValue(workTarget) {