mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-26 05:12:19 -05:00
Fix third place match not showing unlinked when counterpicks and different count
This commit is contained in:
@@ -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,
|
||||
)
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user