Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix computed property not honouring development mode
Signed-off-by: Daniel Calviño Sánchez <[email protected]>
  • Loading branch information
danxuliu committed Jan 14, 2021
commit 088f34a45e54383c77cc8e1ce1927a83bc17fe0c
2 changes: 1 addition & 1 deletion src/components/CallView/Grid/Grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export default {
// without screen share, we don't want to duplicate videos if we were to show them in the stripe
// however, if a screen share is in progress, it means the video of the presenting user is not visible
// so we can show it in the stripe
return this.callParticipantModels.length <= 1 && !this.screens.length
return this.videos.length <= 1 && !this.screens.length
},

// The aspect ratio of the grid (in terms of px)
Expand Down