Skip to content

Commit 07d9e9d

Browse files
author
Erik Rasmussen
committed
Merge branch 'master' into heroku
* master: linting
2 parents 0254f7a + af04168 commit 07d9e9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/WidgetForm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export default class WidgetForm extends Component {
7676
<button className="btn btn-success"
7777
onClick={handleSubmit(() => save(data))}
7878
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
8080
</button>
8181
{saveError && <div className="text-danger">{saveError}</div>}
8282
</td>

src/views/Widgets.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class Widgets extends Component {
9999
}
100100

101101
handleEdit(widget) {
102-
const {editStart, initializeWithKey} = this.props;
102+
const {editStart, initializeWithKey} = this.props; // eslint-disable-line no-shadow
103103
return () => {
104104
initializeWithKey('widgetForm', widget.id, widget);
105105
editStart(String(widget.id));

0 commit comments

Comments
 (0)