File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export default class WidgetForm extends Component {
76
76
< button className = "btn btn-success"
77
77
onClick = { handleSubmit ( ( ) => save ( data ) ) }
78
78
disabled = { pristine || invalid || submitting } >
79
- < i className = { 'fa ' + ( submitting ? 'fa-cog fa-spin' : 'fa-cloud' ) } /> Save
79
+ < i className = { 'fa ' + ( submitting ? 'fa-cog fa-spin' : 'fa-cloud' ) } /> Save
80
80
</ button >
81
81
{ saveError && < div className = "text-danger" > { saveError } </ div > }
82
82
</ td >
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ class Widgets extends Component {
99
99
}
100
100
101
101
handleEdit ( widget ) {
102
- const { editStart, initializeWithKey} = this . props ;
102
+ const { editStart, initializeWithKey} = this . props ; // eslint-disable-line no-shadow
103
103
return ( ) => {
104
104
initializeWithKey ( 'widgetForm' , widget . id , widget ) ;
105
105
editStart ( String ( widget . id ) ) ;
You can’t perform that action at this time.
0 commit comments