Skip to content

Commit

Permalink
Merge pull request #1723 from cboard-org/no-output-live-mode
Browse files Browse the repository at this point in the history
Disabled playback when click on the output bar for the live mode
  • Loading branch information
martinbedouret authored Jul 12, 2024
2 parents 5f0b252 + 44b6752 commit 7c02c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Board/Output/Output.container.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export class OutputContainer extends Component {
onClearClick={this.handleClearClick}
onCopyClick={this.handleCopyClick}
onRemoveClick={this.handleRemoveClick}
onClick={this.handleOutputClick}
onClick={isLiveMode ? undefined : this.handleOutputClick}
onKeyDown={this.handleOutputKeyDown}
onSwitchLiveMode={this.handleSwitchLiveMode}
symbols={this.state.translatedOutput}
Expand Down

0 comments on commit 7c02c02

Please sign in to comment.