@@ -162,7 +162,7 @@ class VariableEditor extends React.PureComponent {
162
162
} }
163
163
>
164
164
< Edit
165
- class = 'click-to-edit-icon'
165
+ className = 'click-to-edit-icon'
166
166
{ ...Theme ( theme , 'editVarIcon' ) }
167
167
onClick = { ( ) => {
168
168
this . prepopInput ( variable )
@@ -199,7 +199,7 @@ class VariableEditor extends React.PureComponent {
199
199
} }
200
200
>
201
201
< Remove
202
- class = 'click-to-remove-icon'
202
+ className = 'click-to-remove-icon'
203
203
{ ...Theme ( theme , 'removeVarIcon' ) }
204
204
onClick = { ( ) => {
205
205
dispatcher . dispatch ( {
@@ -264,7 +264,7 @@ class VariableEditor extends React.PureComponent {
264
264
type = 'text'
265
265
inputRef = { input => input && input . focus ( ) }
266
266
value = { editValue }
267
- class = 'variable-editor'
267
+ className = 'variable-editor'
268
268
onChange = { event => {
269
269
const value = event . target . value
270
270
const detected = parseInput ( value )
@@ -300,14 +300,14 @@ class VariableEditor extends React.PureComponent {
300
300
/>
301
301
< div { ...Theme ( theme , 'edit-icon-container' ) } >
302
302
< Remove
303
- class = 'edit-cancel'
303
+ className = 'edit-cancel'
304
304
{ ...Theme ( theme , 'cancel-icon' ) }
305
305
onClick = { ( ) => {
306
306
this . setState ( { editMode : false , editValue : '' } )
307
307
} }
308
308
/>
309
309
< CheckCircle
310
- class = 'edit-check string-value'
310
+ className = 'edit-check string-value'
311
311
{ ...Theme ( theme , 'check-icon' ) }
312
312
onClick = { ( ) => {
313
313
this . submitEdit ( )
@@ -352,7 +352,7 @@ class VariableEditor extends React.PureComponent {
352
352
< div { ...Theme ( theme , 'detected-row' ) } >
353
353
{ detected }
354
354
< CheckCircle
355
- class = 'edit-check detected'
355
+ className = 'edit-check detected'
356
356
style = { {
357
357
verticalAlign : 'top' ,
358
358
paddingLeft : '3px' ,
0 commit comments