Skip to content

Commit

Permalink
feat(DataList): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcfaul committed Oct 1, 2020
1 parent 4934db9 commit 7a96525
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1193,9 +1193,9 @@ class DraggableDataList extends React.Component {
};

this.onDragMove = (oldIndex, newIndex) => {
const {id} = this.state;
const { id } = this.state;
this.setState({
liveText: `Dragging item ${id}.`;
liveText: `Dragging item ${id}.`
});
};

Expand Down

0 comments on commit 7a96525

Please sign in to comment.