Skip to content

Commit

Permalink
Fix front issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cicoub13 committed Jan 29, 2024
1 parent 473f19f commit 9b17f2f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ class BlinkLight extends Component {
this.props.updateActionProperty(this.props.columnIndex, this.props.index, 'blinkingTime', newValue);
};
handleChangeBlinkingSpeed = e => {
console.log(e.target.value);
this.props.updateActionProperty(this.props.columnIndex, this.props.index, 'blinkingSpeed', e.target.value);
};
refreshSelectedOptions = nextProps => {
Expand Down Expand Up @@ -105,7 +104,7 @@ class BlinkLight extends Component {
<div class="form-label">
<Text id="editScene.actionsCard.blinkLights.blinkingSpeed.label" />
</div>
<select class="custom-select" value={blinkingSpeed} onChange={this.handleChangeBlinkingSpeed}>
<select class="custom-select" value={props.action.blinkingSpeed} onChange={this.handleChangeBlinkingSpeed}>
<option value="slow">
<Text id="editScene.actionsCard.blinkLights.blinkingSpeed.slow" />
</option>
Expand Down

0 comments on commit 9b17f2f

Please sign in to comment.