aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/webControls/components/WebControls.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/webControls/components/WebControls.js')
-rw-r--r--src/features/webControls/components/WebControls.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/features/webControls/components/WebControls.js b/src/features/webControls/components/WebControls.js
index b9403bd0d..1cdd14e55 100644
--- a/src/features/webControls/components/WebControls.js
+++ b/src/features/webControls/components/WebControls.js
@@ -32,7 +32,7 @@ const messages = defineMessages({
32 }, 32 },
33}); 33});
34 34
35const styles = theme => ({ 35const styles = (theme) => ({
36 root: { 36 root: {
37 background: theme.colorBackground, 37 background: theme.colorBackground,
38 position: 'relative', 38 position: 'relative',
@@ -197,7 +197,7 @@ class WebControls extends Component {
197 <input 197 <input
198 value={editUrl ? inputUrl : url} 198 value={editUrl ? inputUrl : url}
199 className={classes.input} 199 className={classes.input}
200 onChange={event => this.setState({ 200 onChange={(event) => this.setState({
201 inputUrl: event.target.value, 201 inputUrl: event.target.value,
202 })} 202 })}
203 onFocus={(event) => { 203 onFocus={(event) => {