Skip to content

Commit 63d5609

Browse files
bogdanmaier28cipak
authored andcommitted
fix(MeetingsSdkAdapter): add type multiselect to switch camera and switch speaker controls
1 parent 2bcb444 commit 63d5609

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/MeetingsSDKAdapter/controls/SwitchMicrophoneControl.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export default class SwitchMicrophoneControl extends MeetingControl {
4646
return combineLatestImmediate(microphoneID$, options$).pipe(
4747
map(([microphoneID, options]) => ({
4848
ID: this.ID,
49+
type: 'MULTISELECT',
4950
tooltip: 'Audio Devices',
5051
noOptionsMessage: 'No available microphones',
5152
options: options || null,

src/MeetingsSDKAdapter/controls/SwitchSpeakerControl.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export default class SwitchSpeakerControl extends MeetingControl {
4444
return combineLatestImmediate(speakerID$, options$).pipe(
4545
map(([speakerID, options]) => ({
4646
ID: this.ID,
47+
type: 'MULTISELECT',
4748
tooltip: 'Speaker Devices',
4849
noOptionsMessage: 'No available speakers',
4950
options: options || null,

0 commit comments

Comments
 (0)