Skip to content

Commit

Permalink
Merge pull request #215 from bitfocus/fix/issue-214
Browse files Browse the repository at this point in the history
fix: BreakoutRooms to Breakout Rooms text
  • Loading branch information
digitaldrummerj authored Jan 8, 2025
2 parents bc9933e + ac6a6fc commit 067e4ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zoom-osc-iso",
"version": "4.4.0",
"version": "4.4.1",
"main": "dist/index.js",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions src/actions/action-user-breakout-rooms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function GetActionsUserBreakoutRooms(instance: InstanceBaseExt<ZoomConfig
} {
const actions: { [id in ActionIdUserBreakoutRooms]: CompanionActionDefinition | undefined } = {
[ActionIdUserBreakoutRooms.sendParticipantToBreakoutRoom]: {
name: 'Send Participant To BreakoutRoom (PRO)',
name: 'Send Participant To Breakout Room (PRO)',
options: [options.userName, options.breakoutName],
callback: async (action): Promise<void> => {
// type: 'User'
Expand All @@ -36,7 +36,7 @@ export function GetActionsUserBreakoutRooms(instance: InstanceBaseExt<ZoomConfig
},
},
[ActionIdUserBreakoutRooms.removeParticipantFromBreakoutRoom]: {
name: 'Remove Participant From BreakoutRoom (PRO)',
name: 'Remove Participant From Breakout Room (PRO)',
options: [options.userName],
callback: async (action): Promise<void> => {
// type: 'User'
Expand All @@ -55,7 +55,7 @@ export function GetActionsUserBreakoutRooms(instance: InstanceBaseExt<ZoomConfig
},
},
[ActionIdUserBreakoutRooms.assignParticipantToBreakoutRoom]: {
name: 'Assign Participant To BreakoutRoom (PRO)',
name: 'Assign Participant To Breakout Room (PRO)',
options: [options.userName, options.breakoutName],
callback: async (action): Promise<void> => {
// type: 'User'
Expand All @@ -76,7 +76,7 @@ export function GetActionsUserBreakoutRooms(instance: InstanceBaseExt<ZoomConfig
},
},
[ActionIdUserBreakoutRooms.unassignParticipantFromBreakoutRoom]: {
name: 'Unassign Participant From BreakoutRoom (PRO)',
name: 'Unassign Participant From Breakout Room (PRO)',
options: [options.userName],
callback: async (action): Promise<void> => {
// type: 'User'
Expand Down

0 comments on commit 067e4ee

Please sign in to comment.