Skip to content

Commit

Permalink
fix(MeetingsSdkAdapter): update screen sharing icon
Browse files Browse the repository at this point in the history
  • Loading branch information
lungancatalin authored and lalli-flores committed Apr 9, 2021
1 parent b86dbe1 commit 3b8da37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/MeetingsSDKAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -750,21 +750,21 @@ export default class MeetingsSDKAdapter extends MeetingsAdapter {
const sdkMeeting = this.fetchMeeting(ID);
const inactiveShare = {
ID: SHARE_CONTROL,
icon: 'share',
icon: 'share-screen-presence-stroke',
tooltip: 'Start Share',
state: MeetingControlState.INACTIVE,
text: null,
};
const activeShare = {
ID: SHARE_CONTROL,
icon: 'share',
icon: 'share-screen-presence-stroke',
tooltip: 'Stop Share',
state: MeetingControlState.ACTIVE,
text: null,
};
const disabledShare = {
ID: SHARE_CONTROL,
icon: 'share',
icon: 'share-screen-presence-stroke',
tooltip: 'Sharing is Unavailable',
state: MeetingControlState.DISABLED,
text: null,
Expand Down
2 changes: 1 addition & 1 deletion src/MeetingsSDKAdapter.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ describe('Meetings SDK Adapter', () => {
meetingSDKAdapter.shareControl(meetingID).subscribe((dataDisplay) => {
expect(dataDisplay).toMatchObject({
ID: 'share-screen',
icon: 'share',
icon: 'share-screen-presence-stroke',
text: null,
});
done();
Expand Down

0 comments on commit 3b8da37

Please sign in to comment.