Skip to content

Commit

Permalink
Fix partner list breaking on some matches
Browse files Browse the repository at this point in the history
  • Loading branch information
slmnio committed Apr 24, 2024
1 parent 9c3dfd3 commit 414cfdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/views/sub-views/PlayerPartners.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
(this.relationships || []).forEach(rel => {
if (!["Producer", "Observer", "Replay Producer", "Observer Director", "Lobby Admin", "Tournament Admin", "Graphics Operator", "Stats Producer"].includes(rel.singular_name)) return;
matches = [...matches, ...rel.matches];
matches = [...matches, ...(rel.matches || [])];
});
return matches;
Expand Down

0 comments on commit 414cfdd

Please sign in to comment.