From 9b17f2fa4e3725bc4472449ced05d2aa489821d5 Mon Sep 17 00:00:00 2001 From: Cyril Beslay Date: Mon, 29 Jan 2024 21:34:53 +0100 Subject: [PATCH] Fix front issues --- front/src/routes/scene/edit-scene/actions/BlinkLightParams.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/front/src/routes/scene/edit-scene/actions/BlinkLightParams.jsx b/front/src/routes/scene/edit-scene/actions/BlinkLightParams.jsx index 7454206b14..0b3a24b68b 100644 --- a/front/src/routes/scene/edit-scene/actions/BlinkLightParams.jsx +++ b/front/src/routes/scene/edit-scene/actions/BlinkLightParams.jsx @@ -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 => { @@ -105,7 +104,7 @@ class BlinkLight extends Component {
-