Skip to content

Commit

Permalink
fix(WebexMeeting): remove WebexMeetingControlBar after meeting has ended
Browse files Browse the repository at this point in the history
  • Loading branch information
patricia0817 authored and cipak committed Jun 25, 2021
1 parent 96b05a4 commit a5cac4c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/widgets/WebexMeeting/WebexMeeting.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ class WebexMeetingWidget extends Component {
</div>
)}
</div>
<div className="webex-meeting-widget__controls">
<WebexMeetingControlBar meetingID={meeting.ID} controls={controls}/>
</div>
{meeting.state !== MeetingState.LEFT &&
<div className="webex-meeting-widget__controls">
<WebexMeetingControlBar meetingID={meeting.ID} controls={controls}/>
</div>
}
</>
) : (
<Spinner />
Expand Down

0 comments on commit a5cac4c

Please sign in to comment.