From 44b675202f258ff7fde7ae362e90751fab7ce002 Mon Sep 17 00:00:00 2001 From: Martin Bedouret Date: Wed, 26 Jun 2024 19:06:58 -0300 Subject: [PATCH] Disabled playback when click on the output bar for the live mode --- src/components/Board/Output/Output.container.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Board/Output/Output.container.js b/src/components/Board/Output/Output.container.js index 39f900229..007d04f9e 100644 --- a/src/components/Board/Output/Output.container.js +++ b/src/components/Board/Output/Output.container.js @@ -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}