Skip to content

Commit

Permalink
Fix bugged break info screen
Browse files Browse the repository at this point in the history
  • Loading branch information
slmnio committed Apr 8, 2022
1 parent d40b9be commit a373476
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/broadcast/OtherBroadcasts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default {
}),
other_broadcasts: ReactiveArray("other_broadcasts", {
live_match: ReactiveThing("live_match", {
casters: ReactiveArray(""),
casters: ReactiveArray("casters"),
teams: ReactiveArray("teams", {
theme: ReactiveThing("theme")
})
Expand All @@ -59,7 +59,7 @@ export default {
})({ broadcast: this.startingBroadcast.id });
},
broadcasts() {
if (!this.broadcast) return [];
if (!this.broadcast?.other_broadcasts?.length) return [];
return [
this.broadcast,
...(this.broadcast?.other_broadcasts || [])
Expand Down

0 comments on commit a373476

Please sign in to comment.