mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-16 00:14:21 -05:00
Fix third place match not showing unlinked when counterpicks and different count
This commit is contained in:
parent
383e8b6fe6
commit
93db89c41e
|
|
@ -113,10 +113,14 @@ export function BracketMapListDialog({
|
|||
return true;
|
||||
}
|
||||
|
||||
return finalsMaps.list.every(
|
||||
(map, i) =>
|
||||
map.mode === thirdPlaceMaps.list![i].mode &&
|
||||
map.stageId === thirdPlaceMaps.list![i].stageId,
|
||||
return (
|
||||
finalsMaps.count === thirdPlaceMaps.count &&
|
||||
finalsMaps.pickBan === thirdPlaceMaps.pickBan &&
|
||||
finalsMaps.list.every(
|
||||
(map, i) =>
|
||||
map.mode === thirdPlaceMaps.list![i].mode &&
|
||||
map.stageId === thirdPlaceMaps.list![i].stageId,
|
||||
)
|
||||
);
|
||||
},
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user