Skip to content

Commit 123d100

Browse files
committed
Fix linter errors
1 parent 7dc9c55 commit 123d100

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/fields/ArrayField.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ class ArrayField extends Component {
112112
const item = items.splice(index, 1)[0];
113113
items.splice(newIndex, 0, item);
114114
this.asyncSetState({ items }, { validate: true });
115-
}
115+
};
116116
};
117117

118118
onChangeForIndex = (index) => {
@@ -341,7 +341,7 @@ class ArrayField extends Component {
341341
{
342342
hasToolbar ?
343343
<div className="col-xs-2 array-item-remove text-right">
344-
<div className="btn-group" style={{ display: 'flex' }}>
344+
<div className="btn-group" style={{ display: "flex" }}>
345345
{removable ?
346346
<button type="button" className="btn btn-danger"
347347
style={{ flex: 1, paddingLeft: 6, paddingRight: 6 }}

0 commit comments

Comments
 (0)