Skip to content

Commit 1bda9aa

Browse files
authored
Merge pull request #96 from bitfocus/78-change-mute-dropdown-default-to-toggle
change default mute action to toggle
2 parents 0889218 + 8c47ea7 commit 1bda9aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/choices/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export function GetMuteDropdown(id: string, label?: string, includeToggle?: bool
9898
)
9999
if (includeToggle == false) return dropdown
100100

101-
return { ...dropdown, choices: [...dropdown.choices, getIdLabelPair('2', 'Toggle')] }
101+
return { ...dropdown, choices: [...dropdown.choices, getIdLabelPair('2', 'Toggle')], default: '2' }
102102
}
103103

104104
export function GetOnOffToggleDropdown(

0 commit comments

Comments
 (0)