Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pomahtri committed Oct 18, 2023
1 parent 58c14aa commit 8b31f8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion JSDemos/Demos/DataGrid/BatchEditing/React/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const App = () => {
setSelectTextOnEditStart(args.value);
}, []);

const onStartEditActionChanged = React.useCallback(({value}: {value: DataGridTypes.StartEditAction}) => {
const onStartEditActionChanged = React.useCallback((args: SelectBoxTypes.ValueChangedEvent) => {
setStartEditAction(args.value);
}, []);

Expand Down
4 changes: 3 additions & 1 deletion JSDemos/Demos/DataGrid/DeferredSelection/React/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from 'react';
import DataGrid, { Column, DataGridTypes, FilterRow, Selection } from 'devextreme-react/data-grid';
import DataGrid, {
Column, DataGridTypes, FilterRow, Selection,
} from 'devextreme-react/data-grid';
import Button from 'devextreme-react/button';
import query from 'devextreme/data/query';
import 'devextreme/data/odata/store';
Expand Down

0 comments on commit 8b31f8b

Please sign in to comment.