Skip to content

Commit 67ab825

Browse files
authored
Merge pull request #259 from Azure-Samples/fuyan/fix-logic-video-off
Fix logic when video off and user can turn on video
2 parents 897e462 + 140575b commit 67ab825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Project/src/MakeCall/CallCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1550,7 +1550,7 @@ export default class CallCard extends React.Component {
15501550
<Icon iconName="Video" />
15511551
}
15521552
{
1553-
(this.state.canOnVideo || !this.state.videoOn) &&
1553+
(this.state.canOnVideo && !this.state.videoOn) &&
15541554
<Icon iconName="VideoOff2" />
15551555
}
15561556
{

0 commit comments

Comments
 (0)