Skip to content

Commit

Permalink
feat: rename handle1to1Routing to handleOneToOneRouting
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Aug 14, 2023
1 parent f25d537 commit 6aba807
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/ChannelRouteSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class ChannelRouteSettings extends React.PureComponent<
}
}

handle1to1Routing() {
handleOneToOneRouting() {
if (window.confirm('Reassign all Faders 1:1 to Channels????')) {
window.socketIoClient.emit(SOCKET_REMOVE_ALL_CH_ASSIGNMENTS)
this.props.fader.forEach((fader: any, index: number) => {
Expand Down Expand Up @@ -165,7 +165,7 @@ class ChannelRouteSettings extends React.PureComponent<
</button>
<button
className="button"
onClick={() => this.handle1to1Routing()}
onClick={() => this.handleOneToOneRouting()}
>
ROUTE 1.Mixer 1:1
</button>
Expand Down

0 comments on commit 6aba807

Please sign in to comment.